Jump to content

Functor

Members
  • Content Count

    34
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Functor

  1. Functor

    Nemo patcher

    @4144 Script for patches Extend Chat Box, Extend Chat Room Box, ExtendPMBox has bug. It causes random crashes after map loading for new EXEs. I fixed it. You can add it to your fork of NEMO. https://mega.nz/#!cctGiToD!pxeNHeixkLqhTbPE61Dh-YC_MEouetCOerUBHvy0lgQ
  2. For 2015-09-16aRagexe you have to use: <ITEM> and </ITEM> instead of: <ITEMLINK> and </ITEMLINK>
  3. It is a patch of EXE. You can apply it by using NEMO patcher.
  4. Hello! You should try applying patch "Enable Proxy Support". In this case EXE will use IP from "clientinfo.xml" for all servers(login, char, map).
  5. offset 3DCD80 change 56 to C3
  6. offset 3E4E17 change A3 D8 8A C9 00 to 90 90 90 90 90
  7. Crash happened in the function of processing packet with id 0x9A. It is packet for broadcast message(ZC_BROADCAST). So, you should log all broadcasts and find the one which causes crash of game.
  8. Also we can see this bug, when someone enters to the party. It is caused by sending of 0x1E9 packet, which adds one specific party member to the list on the client side. To fix bug of this plugin, we can disable sending of this packet. Because in any case server always sends full list of party members in 0xFB packet. before: HPExport void plugin_init (void) { add: void clif_party_member_info_overload(struct party_data* p, struct map_session_data* sd) { return; } after: HPExport void plugin_init (void) { add: clif->party_member_info = &clif_party_member_info_overload;
×
×
  • Create New...

Important Information

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