360haven works best with JavaScript enabled
[Modding] Wanna learn how to mod games?
Loading
Register
Page 1 of 4 1234 LastLast
Results 1 to 8 of 31
  1. #1
    Administrator
    360HAVEN

    Sephiroth is offline
    Join Date : Nov 2010
    Location : Setagaya-ku, Tokyo, Japan
    Posts : 3,380
    Array
    Twitter: @

    [Modding] Wanna learn how to mod games?

    Do you want to learn how to mod/edit saves?


    I'll teach you if i get enough replies :)


    --edit--
    Step #1

    To mod saves, you'll need a hex editor which can be downloaded here

    HxD - Freeware Hex Editor
    Version: 1.7.7.0 (April 3, 2009)
    OS: Windows 95, 98, ME, NT 4, 2000, XP, 2003, Vista, or 7

    Code:
    mh-nexus.de/en/downloads.php?product=HxD

    --edit 2--
    Step #2

    Download: SAVEDATA.rar, and open in HXD.


    Step #3 (see image)


    1. Press Ctrl + F.
    2. Change datatype to integer number
    3. Select (any bitwidth)
    4. Select Big Endian (motorola SPARC,...)
    5. Search for: 999999999




    After clicking the OK button, you'll see this result.



    Offset: C which is 0x0000000C
    Length: 4 which is Int32
    Hex: 3B9AC9FF which is 999999999
    -

    There is another offset with the same value.
    Post the offset if you've found.


    --Edit 3--

    What is Hexadecimal?

    Simply, hexadecimal is a base 16 number system. We use a base 10 number system (decimal) usually, however, in computing, base 16 is a lot more useful. Hexadecimal numbers usually are preceded with "0x" to avoid confusion - eg 0x10 is the number 16. There are various other ways of representing hex numbers, eg 10h or 1016, but I'll use the 0x notation.
    So how does a base 16 number system work?
    In our base 10 number system, we have the digits 0 to 9. Once wee get past 9, wee need to start using two digits to represent the number. That is, at 10, wee start using two digits to represent numbers. For a base 16 number system like hexadecimal, we only start using two "digits" to represent the number after 15. So how do we represent the numbers 10 to 15 as single "digits"? We use letters.
    Here's a short table, showing the conversion between hexadecimal and decimal:

    Code:
    Hex        Dec
    0x00        0
    0x01        1
    0x02        2
    0x03        3
    0x04        4
    0x05        5
    0x06        6
    0x07        7
    0x08        8
    0x09        9
    0x0A       10
    0x0B       11
    0x0C       12
    0x0D       13
    0x0E       14
    0x0F       15
    -
    0x10       16
    0x11       17
    0x12       18
    0x13       19
    0x14       20
    0x15       21
    0x16       22
    0x17       23
    0x18       24
    0x19       25
    0x1A       26
    0x1B       27 
    0x1C       28
    0x1D       29
    0x1E       30
    0x1F       31
    -
    0x20       32
    -
    0x30       48
    -
    0x40       64
    -
    0x50       80
    -
    0x60       96
    -
    0x70       112
    -
    0x80       128
    -
    0x90       144
    -
    0xA0       160
    -
    0xB0       176
    -
    0xC0       192
    -
    0xD0       208
    -
    0xE0       224
    -
    0xF0       240
    Learn more

    Step #4

    Character: Emil.

    P.attack: 6666
    P.Def: 5458
    A.Attack: 7777
    A.Def: 5457
    Dex: 9778
    Luck: 6878

    Find the offset of emil's stats, and post them like this - see example below.

    P.attack: 0x00000???
    P.Def: 0x00000???
    A.Attack: 0x00000???
    A.Def: 0x00000???
    Dex: 0x00000???
    Luck: 0x00000???


    P.attack: 0x00000B74
    P.Def: 0x00000B76
    A.Attack: 0x00000B78
    A.Def: 0x00000B7A
    Dex: 0x00000B7C
    Luck: 0x00000B7E



    --Edit 4--
    Step #5

    Some things like Health points (HP) aren't easy to find or aren't easy to mod.
    If you don't edit the proper offsets correctly, it will reset in the game or damage/corrupt your save.

    Here is an example;

    Character: Emil.
    HP: 9999/9999


    This game has 4 offsets of Emil's HP.
    An experienced modder wouldn't search for 9999, instead he would search for hex value: 270F (converts to 9999 in decimal)

    Some hex editors like hex workshop has a base converter.
    You can convert hex to decimal or decimal to hex.
    You can also convert decimal to hex with google search - see example below;

    Ask google:

    Code:
    9999 in hex =
    Google will answer:

    Code:
    9999 =
    0x270F
    -

    Most of the time when searching for a value like '270F', 10 or more instances of '270F' will be found.
    In this save, you will find 43 instances of '270F'.

    Can you find 4 of Emil's HP offsets?
    Last edited by Sephiroth; 02-07-2015 at 04:20 AM.
    Downloads : 171 || Uploads : 13 || Rep Power : 9413 || Posts : 3,380 || Thanks : 513 || Thanked 4,270 Times in 1,295 Posts




    What i have shown you is reality. What you remember... that is the illusion.





  2. The Following 12 Users Say Thank You to Sephiroth For This Useful Post:

    + Show/Hide list of the thanked


  3. #2
    Haven's Warrior lv10
    rghjtagpro

    boogieman is offline
    Join Date : Nov 2011
    Location : usa
    Posts : 529
    Array

    Re: [Modding] Wanna learn how to mod games?

    Quote Originally Posted by Sephiroth View Post
    Do you want to learn how to mod/edit saves?


    I'll teach you if i get enough replies :)
    hell yeah about time I want to learn I be your slave

  4. The Following User Says Thank You to boogieman For This Useful Post:


  5. #3
    Member
    leah is offline
    Join Date : Jul 2013
    Posts : 34
    Array

    Re: [Modding] Wanna learn how to mod games?

    Hey, That would be awsome if you can show us how?

  6. #4
    Program Engineer
    Jappi88


    Jappi88 is offline
    Join Date : Dec 2010
    Age : 35
    Posts : 1,660
    Array

    Re: [Modding] Wanna learn how to mod games?

    I will help allong if anyone needs it.
    Downloads : 166 || Uploads : 31 || Rep Power : 8656 || Posts : 1,660 || Thanks : 188 || Thanked 10,799 Times in 600 Posts


    Programming is 10% science, 20% ingenuity, and 70% getting the ingenuity to work with the science.

    ~~~~~~~~~~~~~~~~~~~~~~~~~

    Programming is like sex:
    One mistake and you have to support it for the rest of your life.


  7. The Following 3 Users Say Thank You to Jappi88 For This Useful Post:


  8. #5
    Administrator
    360HAVEN

    Sephiroth is offline
    Join Date : Nov 2010
    Location : Setagaya-ku, Tokyo, Japan
    Posts : 3,380
    Array
    Twitter: @

    Re: [Modding] Wanna learn how to mod games?

    -- First post updated --
    Downloads : 171 || Uploads : 13 || Rep Power : 9413 || Posts : 3,380 || Thanks : 513 || Thanked 4,270 Times in 1,295 Posts




    What i have shown you is reality. What you remember... that is the illusion.




  9. The Following User Says Thank You to Sephiroth For This Useful Post:


  10. #6
    RETRO
    Gamer

    THUMBS is offline
    Join Date : Jan 2014
    Location : RETRO TOWN UK
    Posts : 12,545
    Array
    Twitter: @

    Re: [Modding] Wanna learn how to mod games?

    thats very kind of you Sephiroth im sure this will help a lot of members out on there modding thanks for your time with this thread
    Downloads : 107 || Uploads : 38 || Rep Power : 17084 || Posts : 12,545 || Thanks : 1,039 || Thanked 1,987 Times in 1,322 Posts



  11. The Following User Says Thank You to THUMBS For This Useful Post:


  12. #7
    Haven's Warrior lv10
    rghjtagpro

    boogieman is offline
    Join Date : Nov 2011
    Location : usa
    Posts : 529
    Array

    Re: [Modding] Wanna learn how to mod games?

    Goddess just got better two of top dev's count me in I work with jappi in the pass you want to learn the right way now is your chance you pass this out your stupid !!!

  13. The Following User Says Thank You to boogieman For This Useful Post:


  14. #8
    Developer
    Omega


    amany is offline
    Join Date : Dec 2013
    Location : uk
    Posts : 410
    Array
    Twitter: @

    Re: [Modding] Wanna learn how to mod games?

    thats pretty cool Sephiroth im sure this will help a lot of members also nice job ;)

  15. The Following User Says Thank You to amany For This Useful Post:


 

 
Page 1 of 4 1234 LastLast

Similar Threads

  1. Best type of code to learn to make save editors or make games
    By moneytrees in forum General Discussion
    Replies: 4
    Last Post: 03-20-2014, 09:17 AM
  2. [YouTube] The 5 Worst Boss Battles in Games (And the Good Ones They Could learn from)
    By scorpionnet in forum Youtube Famous
    Replies: 2
    Last Post: 02-17-2014, 05:34 AM
  3. What if i wanted to learn how to mod games
    By XxstonyxX in forum General Discussion
    Replies: 3
    Last Post: 10-27-2013, 05:36 PM
  4. 3 Games on here that I would appreciate A LOT any help on modding!
    By John718 in forum Xbox 360 Modding Discussion
    Replies: 2
    Last Post: 09-28-2011, 07:55 AM

Visitors found this page by searching for:

Nobody landed on this page from a search engine, yet!

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.

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