360haven works best with JavaScript enabled
[Release] Diablo 3 Decrypt/Encrypt Tool v1.0 - Page 10
Loading
Page 10 of 28 FirstFirst ... 5678910111213141520 ... LastLast
Results 73 to 80 of 222
  1. #73
    Junior Member
    rambotto is offline
    Join Date : Feb 2012
    Posts : 11
    Array

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Grazieeee!!!!!

  2. #74
    KingJackson

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Quote Originally Posted by cybersam View Post
    try searching for E617


    as a tip on how you can calculate your gold value... (this equation is still beta... and can't guarantee it working... but you can try it out and see if you can find your money value with it)

    lets take the "3046" as an example

    divide that by 128 and take the result cut of the decimal values and multiply it with 128... then subtract that result from 3046

    then add that result to 128 (this is the first hex part)
    the second part of the hex value would be the 23 (17 in hex)

    3046 / 128 = 23,796875
    128 * 23 = 2944
    3046 - 2944 = 102
    128 + 102 = 230 (E6 in hex)

    so the result should be E617

    i didn't try this with bigger values... but should be the same principals (you will just have more 80 values to work with)

    if you have bigger values can you post your save file ?!
    This is exactly right .. worked in everyone of my tests..
    I found that with bigger values you just use the number that you got when dividing by 128 to find the rest.

    For example .. Say you have 2,000,000 gold

    2,000,000 / 128 = 15625 <-- This is your carry on number.
    128*15625 = 2000000
    2000000-2000000 = 0
    1) 0+128 = 128 (80 Hex) <-- Your first Search Value

    Here we use the carry on number to keep going.

    15625 / 128 = 122 <-- Your carry on number
    128*122 = 15616
    15625-15616 = 9
    2) 128+9 = 137 (89 Hex) <-- Second search value

    Then Just Hex the carry on number whenever X>127 (X=Carry on number)

    3) 122 (7A Hex) <--Last Search Value

    (1,2,3) = 80 89 7A <-- What to search for in your Hex Editor..

    Pretty much the exact same thing as Cybersam wrote, just confirmed and taken a step further.

  3. #75
    Reverse engineer
    Vulnavia

    Vulnavia is offline
    Join Date : Jul 2011
    Location : Outer Space
    Posts : 214
    Array

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Hehe, i think i know what they do with the Values, i think i will code a little Valueconverter only for fun... But i have first to go somewhere, will be back later... ;)

  4. #76
    Haven Martial Arts God


    cybersam is offline
    Join Date : Jan 2011
    Posts : 1,193
    Array

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Quote Originally Posted by KingJackson View Post
    This is exactly right .. worked in everyone of my tests..
    I found that with bigger values you just use the number that you got when dividing by 128 to find the rest.

    For example .. Say you have 2,000,000 gold

    2,000,000 / 128 = 15625 <-- This is your carry on number.
    128*15625 = 2000000
    2000000-2000000 = 0
    1) 0+128 = 128 (80 Hex) <-- Your first Search Value

    Here we use the carry on number to keep going.

    15625 / 128 = 122 <-- Your carry on number
    128*122 = 15616
    15625-15616 = 9
    2) 128+9 = 137 (89 Hex) <-- Second search value

    Then Just Hex the carry on number whenever X>127 (X=Carry on number)

    3) 122 (7A Hex) <--Last Search Value

    (1,2,3) = 80 89 7A <-- What to search for in your Hex Editor..

    Pretty much the exact same thing as Cybersam wrote, just confirmed and taken a step further.
    well i didn't take it any further and wanted to keep it simple first... because i didn't have higher gold values anyway ^_^'''



    edit...
    ok i did finally manage to add more gold and more bytes to the save successfully... now i can add as much gold as i want in one go ^_^
    Last edited by cybersam; 09-02-2013 at 06:54 PM.
    Downloads : 17 || Uploads : 2 || Rep Power : 7531 || Posts : 1,193 || Thanks : 43 || Thanked 4,060 Times in 399 Posts


    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs,
    and the Universe trying to produce bigger and better idiots.
    So far, the Universe is winning.

    Rich Cook

  5. #77
    KingJackson

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Quote Originally Posted by cybersam View Post
    well i didn't take it any further and wanted to keep it simple first... because i didn't have higher gold values anyway ^_^'''



    edit...
    ok i did finally manage to add more gold and more bytes to the save successfully... now i can add as much gold as i want in one go ^_^
    Nice.. I just made a small function on my TI89 calculator that converts it. Manage to max out some resources too, pretty easy when you know the formula. Cant figure out which byte defines which resource is which yet e.g. chipped ruby or flawless ruby.. but didnt have long to think about it as my wife wanted my attention on Labor Day.

  6. #78
    Junior Member
    john1712345 is offline
    Join Date : Jan 2011
    Posts : 26
    Array

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    great work as always

  7. #79
    lindafriedherro

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Great tool! Maybe I will be able to hex edit the Gold value :)

  8. #80
    Junior Member
    bads is offline
    Join Date : Jul 2012
    Posts : 7
    Array

    Re: Diablo 3 Decrypt/Encrypt Tool v1.0

    Quote Originally Posted by KingJackson View Post
    This is exactly right .. worked in everyone of my tests..
    I found that with bigger values you just use the number that you got when dividing by 128 to find the rest.

    For example .. Say you have 2,000,000 gold

    2,000,000 / 128 = 15625 <-- This is your carry on number.
    128*15625 = 2000000
    2000000-2000000 = 0
    1) 0+128 = 128 (80 Hex) <-- Your first Search Value

    Here we use the carry on number to keep going.

    15625 / 128 = 122 <-- Your carry on number
    128*122 = 15616
    15625-15616 = 9
    2) 128+9 = 137 (89 Hex) <-- Second search value

    Then Just Hex the carry on number whenever X>127 (X=Carry on number)

    3) 122 (7A Hex) <--Last Search Value

    (1,2,3) = 80 89 7A <-- What to search for in your Hex Editor..

    Pretty much the exact same thing as Cybersam wrote, just confirmed and taken a step further.
    Hey KingJackson, thanks a lot for your tutorial, now I understand how to mod gold value, but what about smaller value like paragon level or stat value on item. Those stuff is really difficult to find using this method.

    Thanks again!!

 

 

Similar Threads

  1. [Release] Iron Brigade (Trenched) Encrypt/Decrypt Hash Fixer v1.0
    By Vulnavia in forum Xbox 360 Modding Programs
    Replies: 41
    Last Post: 05-05-2017, 03:58 PM
  2. [Release] Max Payne 3 Decrypt / Encrypt Mod Tool v1.0
    By Vulnavia in forum Xbox 360 Modding Programs
    Replies: 8
    Last Post: 05-09-2015, 06:47 PM
  3. d3 decrypt tool help...
    By overxkill in forum Help & Support
    Replies: 1
    Last Post: 01-08-2014, 01:29 PM
  4. d3 decrypt tool help pls....
    By overxkill in forum PS3
    Replies: 0
    Last Post: 10-28-2013, 03:59 AM
  5. [Release] Moondiver Encrypt/Decrypt CRC Fixer v1.0
    By Vulnavia in forum Xbox 360 Modding Programs
    Replies: 7
    Last Post: 09-23-2013, 08:55 PM

Visitors found this page by searching for:

nu vot

diablo 3 encrytperdiablo 3 decryptencrypt tooldiablo 3 ps4 save decryptd3ros de&amp;entcrypterd3 decrypter ps3decrypter for diablo 3ps4 decryption diablo 3D3Decrypt Diablo 3 encyption toolhttp:www.360haven.comforumsthreads27416-Diablo-3-Decrypt-Encrypt-Tool-v1-0diablo 3 ps4 decrypt tool

Tags for this Thread

Posting Permissions

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

About 360haven

    360haven is an Forum Devoted To Game modding Fans from all over the world.

    An Awesome Community of Xbox 360 Gamers, Modders and Developers who Create & Share Tutorials, Applications, Gfx, Trainers and Gamesaves.

    A haven for the l33t.
    A scarce paradise for modders.

★★★★★¯\_(ツ)_/¯