Results 1 to 10 of 44

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10

    Phoenix Dynasty Data files modifying

    Phoenix Dynasty Data files modifying

    All data files in Phoenix Dynasty are strongly ciphered… with “strong” XOR algorithm, where each byte just xor’ed with key 0x78 (120 in dec). So, for decryption we must implement reverse xor operation with same key.
    Code:
     while [File] position < [File] length
       do begin
          Read [File] byte
          [File] byte XOR 0x78
          save byte to new file
       end;
    You can use small application XORed to perform decryption

    Set “xor” value to 120 and drag all files to the main form. Decrypted files will be created in the same folder with original files. Now you can modify any data and try to find some values that aren’t server-side.

    Q: How to view and change something in data files
    A: All files in data folder are simple csv. Open OpenOffice Calc (or other application like Excel)

    Choose “tabulation” delimiter and Win-1251 codepage. Then without problems you can view all tabled data.
    After changes, use XOR 120 again and replace original file with modified.
    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  2. The Following User Says Thank You to Dwar For This Useful Post:


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •