Hello everyone, my client uses 0x0064,55 for login, and I want to change it like 0x0078. I already know what to change server side but, how I find it in my client to change it? What do I need to hex in the client?
Thank you.
So, these are the packet keys for 2012-04-10 in packets.h
#if PACKETVER >= 20120410 packetKeys(0x01581359,0x452D6FFA,0x6AFB6E2E); /* Thanks to Shakto */#endif
Pretty easy to change, but, how to find and edit them in the client with an hex editor?
Hi all.
I've got an atcommand which calls a TimerFunc function via iTimer-> add_timer() and so. If my TimerFunc is in atcommand.c it works fine, but if I use it from pc.c it doesn't work (it doesn't call it, neither crash or debugs).
This is the call from the atcommand when the timer...
Hi, 2 points:
- I diff'd my client with "Load LUA before LUB", it's ok for the data folder part, but it's not reading my .lua files inside /System, asking for lub files. What do I do in this case?
- Some parts of my client (specific buttons and sections) are not translated [source] I'm using...
There are thousands of available dictionaries out there with md5 encrypted/decrypted passwords. This is the reason I guess Hercules should move to (or at least, make it available) some kind of "double hash" with salt.
Something like md5( salt + md5( password )), where the salt is defined by the...
Hi, can somebody tell me from which version the client supports mounting and, along them, which one is the most stable an reliable (e.g. no random crashes, rcx support, etc?).
Thank you.
Hi, I'm making a command to change the name of a character. It's working fine by now, but to make it better I need a bit of help:
- How can I, from atcommand.c and script.c get the char table name? This is stored in the variable chardb inside char.c, but I cannot access it and if I include it...