Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Zegita

  1. Zegita

    Why do decrypt offsets change sometimes?

    here is the process code. in the end it runs handle You must be registered for see element. here is handle code and it increments position by 3 You must be registered for see element. here is the decrypt function where array offset and position are used to determine where the next byte to...
  2. Zegita

    Aion-Core Extreme Classic Reloaded!

    Packet structure is different. ---------------------------------- Also, please work on a new core. AL core is super bloated. I write my own core currently and it has 50% less code because AL core has so many things programmed poorly.
  3. Zegita

    Does anyone have source they wanna share?

    nope, unless you want to buy an Emulator, it is not free.
  4. Zegita

    Is it worth posting & explaining packet structures & encryption?

    Re: Is it worth posting & explaining packet structures & encryption? Sorry, I misunderstood the last part. You will need an encryption function to start at a specific index because when encrypting packets the packet data is flipped and sent via little endian so we can specify where...
  5. Zegita

    Joying development efforts?!

    There are big reasons why people don't want to join teams, the aion emulation community is plagued with leechers and users don't want to contribute, but want a fully working emulator for FREE! I've worked on projects before helping setup emulators and you put so much time in but you don't...
  6. Zegita

    Help with istance fix TiamatStrongHold

    And so far you've not shown the files you've been looking at, what you've tried etc.. give us all the steps you've tried and we will give you clues. We won't be giving you source code, you're in the emulation development section of ragezone, you should be showing us what you have done to drive...
  7. Zegita

    Help with istance fix TiamatStrongHold

    Look through the source code and find the action that also has a "yes" option and use that. if @You must be registered for see element. does it for you, you won't learn anything.
  8. Zegita

    Is it worth posting & explaining packet structures & encryption?

    Re: Is it worth posting & explaining packet structures & encryption? appendChecksum() you are correct, this function is void, but this is the case because the function is a mutator, not an accessor and so it doesn't return anything. It mutates the raw data passed in. The encXORPass()...
  9. Zegita

    Is it worth posting & explaining packet structures & encryption?

    The RSA class just creates RSA keypair and encryptModulus just ciphers the RSA modulus. CryptEngine stores instances of Blowfish class and RSA class. The Byte key is used to encrypt first packet. Inside there is also some functions to verify checksums and do an XOR pass.
  10. Zegita

    How to decrypt Server packet

    All code is there for you, what are you aiming to achieve with this decryption? Are you wanting to sniff for new opcodes and implement new packets? do you want to just understand how it works? you want to decrypt packets, but why? for what purpose. I don't answer this post because you paste a...
  11. Zegita

    Is it worth posting & explaining packet structures & encryption?

    to me, it looks like you are trying to sniff local server packets which is not needed. if you want to sniff new packets to implement, download KR version and sniff there. KR gets newer update before NA or EU. i think learn from the src how it flows together, then attempt this what you want to...
  12. Zegita

    Is it worth posting & explaining packet structures & encryption?

    it tells you in the comment above, first game server packet is unencrypted, the crypt engine is enabled and the rest are encrypted. SM_KEY is for sending key to client. it has this structure: <packet id="0x48" name="SM_KEY"> <part name="key" type="d"/> </packet>...
  13. Zegita

    Is it worth posting & explaining packet structures & encryption?

    what are you not sure about? which packet you try to decrypt? cheat engine just used for memory edit, not server/client packet :) Explain what you want to do and i will help. If more people are interested, I can explain everything.
  14. Zegita

    Is it worth posting & explaining packet structures & encryption?

    I am just thinking if it is worth posting packet structures with explanations and corresponding packet flow and crypto functions from login, gameserver and chat. Can maybe even talk about sniffing packets manually and implementing/updating within the emulator. It seems so many want to take, but...
  15. Zegita

    would it work? if I migrating java to c++

    no, i develop it myself. its complete enough to play.
Back
Top