Jump to content

xP3NG3Rx

Honorable Member
  • Posts

    839
  • Joined

  • Days Won

    393
  • Feedback

    100%

Everything posted by xP3NG3Rx

  1. M2 Download Center Download Here ( Internal ) Hello everyone. It's a good day to share an old code with you. First of all you need to know: I don't help to install it. Don't even take the contact with me about it. The whole code is written by me, and reversed from official binaries. At the beginning do a backup for your files(srcs+pys) and READ CAREFULLY the readme. W/o brain.exe please close this tab, or your browser, thank you for your understanding. Preview: Download.exe Enjoy & #h4v3fun, pngr
  2. [Hidden Content] [Hidden Content] I didn't follow the new patchfiles, so this is the whole pack folder unpacked.
  3. I know already, however I'm never using alt+tab.
  4. The attaching function w/ right mouse button is located into the uiInventory.py file, because you are clicking on an item in the inventory. You have to check the current opened window to blocks the equiping the sash and make some magic in the "def __UseItem(self, slotIndex):" and "def __SendUseItemPacket(self, slotPos):" The slot highlighting is dependig on what version is that what you are using.
  5. This is one of the minimal requirements of server developing to understand how this works... Nice tutorial btw. Respect!
  6. OMG! I'm going to take a shower with my hair dryer. Please set up a new rule to this topic: NOT ALLOWED REQUESTS AND CADGE!
  7. v16.5.1 [Hidden Content] ps.: metin2_patch_monster_card and metin2_patch_flame_dragonlair patches are not included yet.
  8. locale_string.txt? Whaaat? It has nothing to do with it. In my opinion the locale.cancel(locale.lua or translate.lua) is overrided somewhere.
  9. Where did you midify the values? In the database or in the txt proto?
  10. Because he isn't bought this system. It has been released on -EDIT- yesterday. Nobody will help w/ this.
  11. There is a public anticheat on this forum, just use the searchbox.
  12. Learn Lua pls. Esay to lern, just read the whole manual by once.
  13. Change your HideAllQuestWindow function to this: def HideAllQuestWindow(self): [obj.OnCancel() for obj in self.wndQuestWindow] This is need in that case if your self.wndQuestWindow variable is a list( [] ) what hasn't attribute "iteritems" as the errorlog said also. That one-line command will iterate each items in the list, and that will call the "OnClose" method on every object in the list. Same as this: def HideAllQuestWindow(self): for obj in self.wndQuestWindow: obj.OnClose() or this: def HideAllQuestWindow(self): for i in xrange(len(self.wndQuestWindow)): self.wndQuestWindow[i].OnClose() or... def HideAllQuestWindow(self): map(lambda x:x.OnClose(), self.wndQuestWindow) and many more opportunities...
×
×
  • 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.