Jump to content

Dastgir

Script Developers
  • Content Count

    3803
  • Joined

  • Last visited

  • Days Won

    249

Everything posted by Dastgir

  1. You cannot, there's only 4 set of hotkeys you can use via client,
  2. Might be case of new/old client, if you use different clients on both server, it's highly possible that other clients have some extra messages , which shifts some line, causing this kind of problem
  3. Open msgstringtable, find (New Server) Replace it with what you want..
  4. Show the contents of jobinheritlist inside skillinfoz, thats responsible for this
  5. kRO is not gonna make it configurable unless they plan to have a lot of races (>10 maybe)Thats true too And that won't happe for more 10 years xD
  6. That doesn't need to be changed. the sd->chatID was renamed into sd->chat_id Update: All Plugins are now compatible with latest hercules
  7. No it isn't, however, you don't need them for RO Server, they are needed for webserver
  8. Added It (market.c) appeared error on last git version of hercules, please fixed A.S.A.P, thanks.. 1>------ Build started: Project: market, Configuration: Release Win32 ------ 1> market.c 1>..\src\plugins\market.c(155): error C2039: 'chatID' : is not a member of 'map_session_data' 1> D:\Ro Dev\PandoraRo\Hercules - PandoraRo\src\map/pc.h(157) : see declaration of 'map_session_data' 1>..\src\plugins\market.c(329): error C2039: 'chatID' : is not a member of 'map_session_data' 1> D:\Ro Dev\PandoraRo\Hercules - PandoraRo\src\map/pc.h(157) : see declaration of 'map_session_data' ========== Build: 0 succeeded, 1 failed, 36 up-to-date, 0 skipped ========== https://github.com/dastgir/HPM-Plugins/commit/4b5839d267f8b35f6fec966fc318e4db2cff6a4c , Updated Will update it
  9. mysql -u root -pROOT_PASSWORD_HERE YOUR_MAIN_DB < main.sqlYou need to replace Your own Root password you used while setting up MySQL and the database that you created..
  10. 1) thats client >= 2015-10 2) Not possible yet, until kRO decides to make it configurable by packets/lua
  11. Run with gdb, so we can look into it and point the problem(/solution) to Rytech
  12. Select map-server as startup project and click on Start debugging, then you can have breakpoints and everything else...
  13. Yes, exactlybut when i input packet key without 0x i got error " Packet Frist Key Encryption: Patch Cancelled - Key Not Changed"how about that?i must use 0x but when I used it, the number shown is less a digit from the original. Example i copy this key 0x290551ea on nemo but in nemo show like this 0290551e?? what must i do??You should not use those 3 patches unless you want to modify the packet keys to some custom.Just diff without those and it will work fine(I just saw those are default 20141022 packet keys) Those Patches are for custom packet keys...
  14. client.conf please tell me how to fix thisThe error message shows that packet was encrypted, but with a wrong key, double check the packet key input by NEMO(shouldn't contain 0x on NEMO), also, have you recompiled the server?
  15. We currently don't support it, you may need to manually edit @commands from AtCommand.c and show @dailyrewards
  16. Maybe your PC crashed, and windows cannot save the file, making it save with full null terminator... (If there isn't much thing done on those files, redo it, or try some file recovery software)
  17. Summoner uses ID 4218 bool pc_db_checkid(unsigned int class_){ return class_ < JOB_MAX_BASIC || (class_ >= JOB_NOVICE_HIGH && class_ <= JOB_DARK_COLLECTOR ) || (class_ >= JOB_RUNE_KNIGHT && class_ <= JOB_MECHANIC_T2 ) || (class_ >= JOB_BABY_RUNE && class_ <= JOB_BABY_MECHANIC2 ) || (class_ >= JOB_SUPER_NOVICE_E && class_ <= JOB_SUPER_BABY_E ) || (class_ >= JOB_KAGEROU && class_ <= JOB_OBORO ) || (class_ >= JOB_REBELLION && class_ < JOB_MAX );}change to bool pc_db_checkid(unsigned int class_){ return class_ < JOB_MAX_BASIC || (class_ >= JOB_NOVICE_HIGH && class_ <= JOB_DARK_COLLECTOR ) || (class_ >= JOB_RUNE_KNIGHT && class_ <= JOB_MECHANIC_T2 ) || (class_ >= JOB_BABY_RUNE && class_ <= JOB_BABY_MECHANIC2 ) || (class_ >= JOB_SUPER_NOVICE_E && class_ <= JOB_SUPER_BABY_E ) || (class_ >= JOB_KAGEROU && class_ <= JOB_OBORO ) || (class_ == JOB_REBELLION) || (class_ >= JOB_YOURCUSTOMCLASS && class_ < JOB_MAX );}^ on PC.cAssuming that your custom classes are consecutive and JOB_YOURCUSTOMCLASS is job with lowest job ID...
  18. Just mentioning, 2015 client is stable enough to use on production server.. Where you failed to add job?(while adding costume is feasible) You can add costume by renaming the sprite file and adding them as items..
  19. No What i mean is, Why is it when i download that Plugin it shows that it is a txt file only? Therefore i was asking if i can just simply change the file extension .txt file to .c to convert it? Yes, you can simply change the extension
  20. Get this : https://github.com/ROClientSide/Translation
  21. She provided both @_@ Plugin: http://upaste.me/bf97222696bfa12d0 (.c file) Script: http://upaste.me/637f222689192057b
  22. I never mentioned I was leaving anybody....

  23. It's fully clientside... You need to wear one equip, and other equipment in your inventory should be of same type. (If you wear armor, and right click on any armor on your inventory, then it will show up comparison window)
  24. You need both, install plugin, then load the script
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.