Jump to content

4144

Core Developers
  • Content Count

    1189
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by 4144

  1. You calling hookStop in all cases, this mean you always blocking clif_send. And this mean server cant send any packets.
  2. 4144

    Block use item

    Try set in conf/map/battle/items.conf item_enabled_npc: false
  3. Try set packet_obfuscation in client.conf to 2, also no output from servers in report.
  4. this error mean what your function prototype is wrong. For pre hooks almost all parameters should be pointers to same parameters from normal function. For example if was "const int fd", should be "int *const fd" or "int *fd" was "struct map_session_data *sd" should be "struct map_session_data **sd" etc
  5. Hm, yes atcommand_exec not very optimal for this. You can copy to your pre hook almost whole of this function from start to this if lines.
  6. Errors log show all issues what you have. This is "undeclared (first use in this function)". And this mean need add missing includes into your plugin. Also atcommand_autotrade not exists in plugins, because this is private function. You need other way for detect it. Also why you hooking atcommand->exec? And if hooking it why copy all code from it to plugin? I think exists better ways for do this.
  7. @melv0 You have same errors + warnings. about warnings, please read warnings and fix them in your scripts.
  8. for see actual issue need see it from linux or mac system. Or break in debugger on assert and see stack.
  9. Repo no, but you can get client exe here
  10. Dont need edit any .c files
  11. Need add your plugin into plugins.conf also
  12. try ask plugin author or search other charm plugin. I member here was more than one.
  13. yes save plugin file what you found into src/plugins. then make. also you can build plugin separaly by command: make plugin.item_charms
  14. It's named charm items. If you have it in inventory, it add some stats. Try search for charm plugin.
  15. hercules have this packets already
  16. Btw i also tested with pincode disabled
  17. Strange. Try add packet logger plugin from here https://github.com/HerculesWS/StaffPlugins/tree/master/4144/packetlogger And show logs from log directory: login_*.log, char_*.log Remember what in this logs present your character password and inter servers passwords.
  18. what hercules revision you using? also can you show login, char, map console after you connected with unknown packet
  19. Also try download client 2014-10-22 from this topic:
  20. I checked 20141022, look like client can be disconnected by timeout if wait a bit in server selection window. But if select server at time, works fine. I only tested in some old data, and it not show some messages. Show many "NO MSG". Also i used Nemo from original repository.
  21. it show unknown packet for login server, but 0x65 related to char server. You did make clean after packet version changes and before building server?
  22. Try test without gepard, try test with other characters. Is issue still present?
×
×
  • Create New...

Important Information

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