Jump to content

mrmagic

Members
  • Posts

    182
  • Joined

  • Days Won

    1

Everything posted by mrmagic

  1. They removed support for older VS, from 2010 and below, for the purpose of developing rA in C++ 11. Always read rA's development news, they put it in front for purpose, so people read it, and you should read it too.
  2. That hex trying to enable no walk delay like old client pre-2010 or so, but looks like it cause another bug.
  3. Isn't it obvious, that your client don't read clientinfo.xml from your GRF or data folder?
  4. If you enable the "Disable Packet Encryption" on Nemo then you need to disable it too in server's source go to src\config\core.h Then add // before #define PACKET_OBFUSCATION
  5. That is what ROexe and Gravindo did, and they're Official server, Kinda unbalance if I recall, Trapper Hunter and BB Knight kinda outdamage other classes.
  6. There are already post in those PR about title system problem. If you really want this feature badly, consider helping the PR by testing and report it.
  7. else if(date < 20160203) return 55; else if(date < 20161228) return 56; else if(date < 20170125) return 57; else if(date >= 20170125) return 58;
  8. Use this https://github.com/zackdreaver/ROenglishRE
  9. Long story short, it was Ind who fixed those AI files, so it can be used with emulator.
  10. Just use this project, it's already included with old maps of izlude academy https://github.com/zackdreaver/ROenglishRE
  11. @hendra814 https://github.com/zackdreaver/UnpackedkROclients
  12. Getting crashed by those files is not common, what is your client date?
  13. Not yet implemented. https://github.com/rathena/rathena/issues/1599 If you really want them, you can help developer by providing official info regarding this npc.
  14. Use rAthena, and don't forget to update it, that item has been implemented in january
  15. https://rathena.org/board/topic/109245-rathena-supports-2016-rytechs-clients/?do=findComment&comment=316689
  16. First, i don't mean to rude or offending you. This client is for development purpose, so it will benefit emulator in future. Was not mean to be used by regular user I suppose. You can always use 2015-11-04aRagexe which is more stable and already supported by rAthena itself, and you don't need to mess around with the source code. I can assure you, there are no benefits for regular user to use this one.
  17. Can't reproduce your issue. If it still crashing then there is something wrong with the way you setup the client. That error only related to msgstringtable.txt. Either you put it in data folder or inside grf, so your client will read it properly.
  18. Rename msgstringtable_2013-08-07Ragexe.txt to msgstringtable.txt
  19. Open \conf\battle\player.conf Set "prevent_logout:" to 0
  20. Try use this one https://github.com/zackdreaver/ROenglishRE/blob/master/data/msgstringtable_2013-08-07Ragexe.txt
  21. It's better to post those, to avoid another useless instructions. Because there is no guide around, then I'll give a lil bit instructions how to make those client works. Because you're using RagexeRE client follow this steps: 1. Open src\char\char_clif.c , go to line 307 then change this #if false && PACKETVER >= 20151001 to this #if true && PACKETVER >= 20151001 2. Open src\common\utils.c , go to line 409 then change this else if(date >= 20151104) return 55; to this: else if(date < 20160203) return 55; else if(date >= 20160203) return 56; 3. Open src\map\clif.h , go to line 39 then change MAX_PACKET_VER to 56 4. Clean compile
×
×
  • Create New...