360haven works best with JavaScript enabled
Assassins Creed 3 (hex edit money) - Page 5
Loading
Register
Page 5 of 8 FirstFirst 12345678 LastLast
Results 33 to 40 of 60
  1. #33
    Senior Member
    ricky9999 is offline
    Join Date : Sep 2011
    Posts : 280
    Array

    Re: Assassins Creed 3 (hex edit money)

    my game crashed ! anyone have a way? after edit to 65535 the gem is dead :)) is that because of the TU 2?

  2. #34
    JENGA MASTER SUPREME
    Emerald Lance

    Emerald Lance is offline
    Join Date : Dec 2010
    Location : Awesome Land
    Age : 30
    Posts : 1,834
    Array

    Re: Assassins Creed 3 (hex edit money)

    Emerald Lance comes in to save the day! *applause applause*

    So the save is dynamic. That means it changes itself to accommodate changes in the game. In this context, if you have less than 255 money (FF) then the save will use an Int8 value for money (only enough room for the two digits). Likewise, when you get past 255 it will move up to Int16 (four digits), and when you go past 65535 (FFFF) then it will go up to Int32 (eight digits).

    So for people who are having trouble modding their money after getting more than 65535, try this. Let's assume you have 68000 money. That's 0109A0 in hex. In little endian, that becomes A00901. But then you have to remember that this is eight digits (Int32), not six. So the actual hex number would be 000109A0, and in little endian that becomes A0090100. You have to account for all eight digits. It gets even more complicated when you have to add an extra byte to the equation, in this case being 1D.

    So remember to convert properly when looking for your values. After 65535, it will be an eight digit hex value that you're looking for; any digit that doesn't have anything is zero. Try it and see.
    Downloads : 21 || Uploads : 0 || Rep Power : 5575 || Posts : 1,834 || Thanks : 436 || Thanked 633 Times in 307 Posts


    Quote Originally Posted by SaiyanPrince302, commenting on how to become a Super Saiyan,
    "I know where these guys are going, but in all seriousness, just trying to imagine loved ones being killed almost never works. Be a man and travel into space and shoot at asteroids until you get yourself in an actual life threatening situation."
    --Gamefaqs.com

  3. The Following User Says Thank You to Emerald Lance For This Useful Post:


  4. #35
    Senior Member
    ricky9999 is offline
    Join Date : Sep 2011
    Posts : 280
    Array

    Re: Assassins Creed 3 (hex edit money)

    Quote Originally Posted by Emerald Lance View Post
    Emerald Lance comes in to save the day! *applause applause*

    So the save is dynamic. That means it changes itself to accommodate changes in the game. In this context, if you have less than 255 money (FF) then the save will use an Int8 value for money (only enough room for the two digits). Likewise, when you get past 255 it will move up to Int16 (four digits), and when you go past 65535 (FFFF) then it will go up to Int32 (eight digits).

    So for people who are having trouble modding their money after getting more than 65535, try this. Let's assume you have 68000 money. That's 0109A0 in hex. In little endian, that becomes A00901. But then you have to remember that this is eight digits (Int32), not six. So the actual hex number would be 000109A0, and in little endian that becomes A0090100. You have to account for all eight digits. It gets even more complicated when you have to add an extra byte to the equation, in this case being 1D.

    So remember to convert properly when looking for your values. After 65535, it will be an eight digit hex value that you're looking for; any digit that doesn't have anything is zero. Try it and see.
    uhm, I recognize this too! but I have 3616 in my new save (last save using traner to max but the money too much) n my game crashed after edit to 65000

    ah if I change from 3616 to 65000, do I need to change 1D before it?

  5. #36
    JENGA MASTER SUPREME
    Emerald Lance

    Emerald Lance is offline
    Join Date : Dec 2010
    Location : Awesome Land
    Age : 30
    Posts : 1,834
    Array

    Re: Assassins Creed 3 (hex edit money)

    Don't edit it so high. Try a slightly lower value. Also, make sure you're doing it exactly correct.
    Downloads : 21 || Uploads : 0 || Rep Power : 5575 || Posts : 1,834 || Thanks : 436 || Thanked 633 Times in 307 Posts


    Quote Originally Posted by SaiyanPrince302, commenting on how to become a Super Saiyan,
    "I know where these guys are going, but in all seriousness, just trying to imagine loved ones being killed almost never works. Be a man and travel into space and shoot at asteroids until you get yourself in an actual life threatening situation."
    --Gamefaqs.com

  6. #37
    Senior Member
    ricky9999 is offline
    Join Date : Sep 2011
    Posts : 280
    Array

    Re: Assassins Creed 3 (hex edit money)

    Quote Originally Posted by Emerald Lance View Post
    Don't edit it so high. Try a slightly lower value. Also, make sure you're doing it exactly correct.
    only from 3616 to 65000 T_T
    hehe I ve done this several time with the other AS game. just crashed on this one :))

  7. #38
    Member
    kavehdead is offline
    Join Date : Oct 2012
    Location : iran
    Age : 34
    Posts : 68
    Array

    Re: Assassins Creed 3 (hex edit money)

    If I Search The Amount Of Money , I Envisage With This Error : Cant Find The Specified search string was not found ! Please Help


  8. #39
    Senior Member
    swizzzy is offline
    Join Date : Sep 2011
    Posts : 143
    Array

    Re: Assassins Creed 3 (hex edit money)

    once i get past a certain point will i have to mod the money again? or am i good for the rest of the game with the save in the first post?

  9. #40
    Haven Donator
    ThisGuyP1469 is offline
    Join Date : Apr 2012
    Location : USA
    Posts : 98
    Array

    Re: Assassins Creed 3 (hex edit money)

    Quote Originally Posted by Emerald Lance View Post
    Emerald Lance comes in to save the day! *applause applause*

    So the save is dynamic. That means it changes itself to accommodate changes in the game. In this context, if you have less than 255 money (FF) then the save will use an Int8 value for money (only enough room for the two digits). Likewise, when you get past 255 it will move up to Int16 (four digits), and when you go past 65535 (FFFF) then it will go up to Int32 (eight digits).

    So for people who are having trouble modding their money after getting more than 65535, try this. Let's assume you have 68000 money. That's 0109A0 in hex. In little endian, that becomes A00901. But then you have to remember that this is eight digits (Int32), not six. So the actual hex number would be 000109A0, and in little endian that becomes A0090100. You have to account for all eight digits. It gets even more complicated when you have to add an extra byte to the equation, in this case being 1D.

    So remember to convert properly when looking for your values. After 65535, it will be an eight digit hex value that you're looking for; any digit that doesn't have anything is zero. Try it and see.
    That makes sense now, When i had over 68000 i was still doing the search without the 00's but you can't search for when you have a low amount.. But now that its higher than 68,000 and you want to add FF FF FF you also gotta search for the 8 digits. Thanks Emerald for this info!

 

 
Page 5 of 8 FirstFirst 12345678 LastLast

Similar Threads

  1. [Beta] Assassins Creed 3 Money Editor
    By MastaOfEvil in forum Xbox 360 Modding Programs
    Replies: 84
    Last Post: 06-05-2017, 02:30 AM
  2. Replies: 9
    Last Post: 08-19-2014, 03:00 AM
  3. Hitman Absolution Hex edit money?
    By evilhotice in forum Xbox 360 Modding Discussion
    Replies: 3
    Last Post: 04-08-2014, 07:15 PM
  4. [Tutorial] ASSASSINS CREED IV (BLACK FLAG) - UNLIMITED MONEY HACK (HEX EDITING)
    By Ranurk in forum Xbox 360 Tutorials
    Replies: 27
    Last Post: 01-04-2014, 01:56 PM
  5. How To Hex Edit Need For Speed Shift 2 Money
    By Delete in forum Xbox 360 Tutorials
    Replies: 7
    Last Post: 09-01-2011, 10:21 PM

Visitors found this page by searching for:

assassins creed 3 ps3 save editor

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.

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