4144
Core Developers-
Content Count
1189 -
Joined
-
Last visited
-
Days Won
124
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by 4144
-
You calling hookStop in all cases, this mean you always blocking clif_send. And this mean server cant send any packets.
-
Try set in conf/map/battle/items.conf item_enabled_npc: false
-
Try set packet_obfuscation in client.conf to 2, also no output from servers in report.
-
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
-
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.
-
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.
-
Try setitemscript
-
Unknown Errors after updating to the latest revision
4144 replied to Svanhild's question in Source Support
@melv0 You have same errors + warnings. about warnings, please read warnings and fix them in your scripts. -
Unknown Errors after updating to the latest revision
4144 replied to Svanhild's question in Source Support
for see actual issue need see it from linux or mac system. Or break in debugger on assert and see stack. -
Repo no, but you can get client exe here
-
Dont need edit any .c files
-
Need add your plugin into plugins.conf also
-
try ask plugin author or search other charm plugin. I member here was more than one.
-
yes save plugin file what you found into src/plugins. then make. also you can build plugin separaly by command: make plugin.item_charms
-
It's named charm items. If you have it in inventory, it add some stats. Try search for charm plugin.
-
Status timer says "Hiding", Maya Purple Card bugs out
4144 replied to Dairyll's question in General Server Support
any errors on map server console? -
hercules have this packets already
-
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
make plugin.packetlogger -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
Btw i also tested with pincode disabled -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
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. -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
what hercules revision you using? also can you show login, char, map console after you connected with unknown packet -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
Also try download client 2014-10-22 from this topic: -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
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. -
Receiving unsupported packet type for 20141022
4144 replied to Jguy's question in Client-Side Support
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? -
Try test without gepard, try test with other characters. Is issue still present?