Search results

  1. Mikado

    Changing client login packet

    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.
  2. Mikado

    Editing packet keys client side

    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?
  3. Mikado

    TimerFunc function not firing

    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...
  4. Mikado

    2012-04-10 lub files and translations

    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...
  5. Mikado

    Double md5 with salt for storing passwords

    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...
  6. Mikado

    Most stable version for mounts

    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.
  7. Mikado

    Reading char config inside map files, send char name to client

    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...
Back
Top