Jump to content

z35

Member
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by z35

  1. easy, just change the max level of getting stat points (the normal max level is 90, you maybe want to go beyond that). same applies to the skills, edit the max level of skill points or make a quest to remove all the remaining points.
  2. z35

    BugFix

    Exactly! Btw, thanks for the tut, really helped me!
  3. Hey Devs, my client syserr showed this problem, any help to fix it? Also, line 1047 of introSelect.py
  4. Follow this tutorial. Change the code wherever is needed for 3 inventories. inventorywindow.py
  5. It should , mine works perfectly with the method i mentioned above.
  6. Search shop.cpp and shop_manager.cpp iVal = 3; edit: iVal = 0; Source
  7. Download the Extern and Makefiles of this post. Should fix the problem.
  8. The client folder is the one you will put to your "pack" files of your client, the server folder is the one for your server (some quests and db querries) and last , source is the folder you will see to edit your source for both client and server. Hope I helped you.
  9. char_skill.cpp if (IS_SET(pkSk->dwFlag, SKILL_FLAG_SELFONLY)) ComputeSkill(dwVnum, this); else if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY) && !GetParty())ComputeSkill(dwVnum, this); else if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY) && GetParty()) { FPartyPIDCollector f; GetParty()->ForEachOnMapMember(f, GetMapIndex()); for (std::vector <DWORD>::iterator it = f.vecPIDs.begin(); it != f.vecPIDs.end(); it++) { LPCHARACTER ch = CHARACTER_MANAGER::instance().FindByPID(*it); ComputeSkill(dwVnum, ch); } }
  10. #solved , just delete the error function and it is ok
  11. Trying to impement shoulder sash system , i found this error at compiling . This is my char_item.cpp Any help would be appreciated. Thanks , many regards!
  12. I don't know how to do that,i searched the forum but didn't find anything useful (i think).. any link that could help maybe? #edit: I fixed it by compiling the binary again. I didn't change anything. Nevermind , thank you guys for your answers!
  13. I checked at introselect.py , I had forgotten a " . After a few trials and errors , I got to this situation. Any ideas? Syserr
  14. Hey all! I am trying to implement the 5th class (wolfman / lycan) to my client but when I press ENTER after i put login credentials , the metin window closes. Here's the syserr of the client. Any help would be appreciated.
×
×
  • 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.