Jump to content

DemOnJR

Premium
  • Posts

    208
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by DemOnJR

  1. How will you point an domain name to an dynamic IP without propagation time? (.com take 12/48hours)
  2. Use Excel, copy/paste and edit, And be sure the dump_proto is the right one.
  3. Check enum. Client (GameType.h): enum EWindows { [...] BELT_INVENTORY, #ifdef ENABLE_SWITCHBOT SWITCHBOT, #endif [...] }; Server (lenght.h): enum EWindows { [...] BELT_INVENTORY, #ifdef ENABLE_SWITCHBOT SWITCHBOT, #endif [...] }; Make sure they matches.
  4. price_type select gold if you want yang ('GOLD','SECONDCOIN','ITEM','EXP') Example: INSERT INTO `shopex_item` VALUES (63, 19, 1, 13, 0, 'GOLD', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  5. You need use an vnum id that not exists already
  6. Solved, the second bug with the UNKOWN_TYPE. The bonus description not, screenshot: Mysql: Player.Item id owner_id window pos count vnum socket0 socket1 socket2 socket3 socket4 socket5 attrtype0 attrvalue0 attrtype1 attrvalue1 attrtype2 attrvalue2 attrtype3 attrvalue3 attrtype4 attrvalue4 attrtype5 attrvalue5 attrtype6 attrvalue6 30000092 1 INVENTORY 1 1 85004 25 349 0 0 0 0 22 6 18 10 6 12 19 10 20 10 0 0 0 0
  7. Hi, i'm trying to understand what i did wrong to get the following error on sash system. First bug is with the description of Sashes is not right shows the real bonuses that the weapon had before the "Bonus Absorption" but when i'm looking in the bonus list system it shows the right values. Second is the "UNKNOWN_TYPE[97]" that is because of the "ADDON_VALUE0" has the values 1 5 10 and 20, if i set it to 0 the "UNKNOWN_TYPE[97]" disappear but when I look at the description of sash there are 0 bonuses first and after "Bonus Absorption". I'm using Martysama v5-ex-r202 i already speak with him but is a little busy that's why I said to ask you too. Ps. idk if is something wrong in item_proto.txt client & server (v20.2.5) if someone have the right one i can test it without any problem because right now i'm using the default one 0 changes.
  8. Thanks, i will use it for some tests.
  9. Ohh ok then the Search is for the normal shops, thanks.
  10. One question which version of offline shop are you use ?
  11. Then i can't help you with that. But i post this solution here for CMS by @IonutRO maybe it will help someone:
  12. If the CMS are using IPN from PayPal you need do some setting on your PayPal account:
  13. What is not working? This is just an example you need edit it and adapt to your needs. data = ''.join([i for i in f if not i.lower().startswith(selItem.GetText())]) f.seek(0) f.write(data) f.truncate()
  14. You need to edit this if you have errors: data = ''.join([i for i in f if not i.lower().startswith(selItem.GetText())]) f.seek(0) f.write(data) f.truncate()
  15. If is missing something is because i don't remember from where i edited it an year ago. accountlistwindow.py { "name" : "sterge", "type" : "button", "x" : 105, "y" : 265, "width" : 41, "height" : 21, "text" : "Sterge", "default_image" : "d:/ymir work/ui/public/small_button_01.sub", "over_image" : "d:/ymir work/ui/public/small_button_02.sub", "down_image" : "d:/ymir work/ui/public/small_button_03.sub", }, uiselectcredentials.py After: self.cancelButton.SAFE_SetEvent(self.__OnCancel) Add: self.stergeButton.SAFE_SetEvent(self.__OnSterge) After: self.okButton=self.GetChild("ok") Add: self.stergeButton=self.GetChild("sterge") After: def __OnOK(self): self.Hide() Add: def __OnSterge(self): self.Hide() After: def __OnOK(self): selItem=self.fileListBox.GetSelectedItem() if selItem: if self.selectEvent: self.selectEvent(selItem.GetText()) with open('user//preferred','w') as mainpg: mainpg.write("{};{}".format(selItem.GetText(),self.GetPwdFromId(selItem.GetText())) ) self.__PopupMessage("{} selectat, conecteaza-te apasand load.".format(selItem.GetText())) self.Hide() else: self.__PopupMessage("Nu ai ales niciun cont din lista.") Add: def __OnSterge(self): selItem=self.fileListBox.GetSelectedItem() if selItem: if self.selectEvent: self.selectEvent(selItem.GetText()) with open('user//credentials', 'r+') as f: data = ''.join([i for i in f if not i.lower().startswith(selItem.GetText())]) f.seek(0) f.write(data) f.truncate() self.__PopupMessage("{} a fost sters.".format(selItem.GetText())) self.__RefreshFileList() else: self.__PopupMessage("Nu ai ales niciun cont din lista.")
  16. delete the .core and see after if is something new
  17. @VegaS™ The system is working, thanks. It will be useful instead of ok an direct login ...
  18. Working. If someone have the button .sub i need it idk why the tga is not working for me, thanks.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.