+ Reply to Thread
Results 1 to 7 of 7

Thread: Hex. Guide.

  1. #1
    Member
    Join Date
    Apr 2009
    Location
    ????
    Age
    20
    Posts
    9

    Hex. Guide.

    Here i am posting a hex guide(thank you SCV for telling me where to put this) anyway hex is what is used in codes. I am going to show you a hex chart showing what = what, this will help you figure out how to edit/modify a code. Here we go.

    HEX BACKGROUND(HEX IS A SERIES OF NUMBERS AND LETTERS USED IN CODE THEY ARE ORGINNIZED LIKE THIS 1-9 AND A-F 1-9 IN HEX EQUALS (DUH) 1-9 BUT! A-F EQUALS 10-15)





    hex. 1 2 3 4 5 6 7 8 9
    dec. 1 2 3 4 5 6 7 8 9

    alright this may seem weird at first but it gets easy.

    Note: You can use a calculator on your computer to convert the values I am just sowing you how to do it manually(Thanks Janime6 for telling me this)


    hex. A B C D E F
    dec. 10 11 12 13 14 15



    now this is a pattern which you will see next.

    hex. 10 11 12 13 14 15
    dec. 16 17 18 19 20 21


    this pattern of:
    1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20..
    will continue on. so that is an easy way to remember.

    so lets say in a code you want 100x of something well you can not just put 100 in or else you would have 256 of something because 100 in hex is 256 in regular dec.(dec. is the numbers we always use all the time) so you would follow the pattern until you get to this
    64 that is the number you want 64 in hex. is 100 in dec.

    so lets use this in a real code i will be modifying a code from codejunkies.com it is a code for pokemon diamond version. it is super exp. gain. But i will be modifying it to what i want.

    HERE:

    Super EXP Gain (Hold R at the End of a Battle)
    94000130 000002ff
    62106fc0 00000000
    b2106fc0 00000000
    100458dc 0000270f
    d2000000 00000000

    now once you start to notice hex in a code you can figure out how to modify it(notice i have been dealing with codes for about 2-3 years this may take some time to completely understand. notice2: this will not take you 3 years maybe a day to learn XD)

    the line in lime green is the line with the exp. in it(the part in blue is what i will mod for you)

    HEY look there is hex in the blue it is 270F so what does 270F equal in hex it equals 9999 in dec. which is how much your pokemon will gain in exp. So i want it a little bit higher so i will modify it to about 20,000(dec.) so what does 20,000 equal in hex. it equals 4E20(hex.)

    so my new code is

    THIS:

    94000130 000002ff
    62106fc0 00000000
    b2106fc0 00000000
    100458dc 00004E20
    d2000000 00000000


    now every time i beat a pokemon i will gain about 20,000(note this changes besause of wild pokemon and pokemon trainers so it will vary)


    and if i wanted it at a crazy level i would put FFFF and FFFF equals 65,535
    so it would be:


    94000130 000002ff
    62106fc0 00000000
    b2106fc0 00000000
    100458dc 0000FFFF
    d2000000 00000000


    this is a basic way of changing a code.

    FEEL FREE TO ASK ME QUESTIONS IF YOU DO NOT UNDERSTAND.

    Note: you cam use a calculator to convert the values(thanks Janime6 for telling me this).









    Last edited by ♥♦♣♠Luxord♥♦♣♠; Apr 9th, 2009 at 02:04 PM.




  2. #2
    Your Pokémon has hex data too! DeveloperGame Save ResearcherRAM ResearcherIRC OwnerWiki ContributorEvent ContributorAdministrator Sabresite's Avatar
    Join Date
    Mar 2009
    Location
    Los Angeles
    Posts
    582

    Re: Hex. Guide.

    Very good explination! Programmers like hex because 16 is a multiple of 8, and a power of 4 and 2. This means that visually and mathematically the numbers will be easier to work with.
    I will know everything about pokemon and when I do, you will too.



  3. #3
    Member
    Join Date
    Apr 2009
    Location
    ????
    Age
    20
    Posts
    9

    Re: Hex. Guide.

    Thank you very much.

    Well Once you learn hex. it is very very easy

    Thanks again!




  4. #4
    Member
    Join Date
    Apr 2009
    Location
    Devon, UK
    Age
    18
    Posts
    8

    Re: Hex. Guide.

    this is great allows for uber exp cheat which is a great alternative to the 999 rare candies cheat
    I love shinies if you like shinies too or have a shiny for trade PT me!!!!

  5. #5
    Member
    Join Date
    Apr 2009
    Location
    ????
    Age
    20
    Posts
    9

    Re: Hex. Guide.

    Yes it is i have modified the rare candy cheat and made it a lot more and it works!

    but it does not show up like it normally does it shoes up as this

    ?35

    it usually looks something like that when you go higher than 999(dec.)
    or in hex 3E7

    i will also be taking a few requests for modding certain codes.





  6. #6
    ... DeveloperRAM ResearcherHelpful Q&A MemberFormer Staff damio's Avatar
    Join Date
    Apr 2009
    Location
    Australia.
    Posts
    676

    Re: Hex. Guide.

    Some values cannot go higher than a certain amount in game, if you find this amount, just make it lower (eg. money)

  7. #7
    :D
    Join Date
    Apr 2009
    Location
    United States
    Age
    19
    Posts
    35

    Re: Hex. Guide.

    Then there are those float values.

    Great guide, Luxord. Did you mention you can use your Calculator on your computer to convert?

+ Reply to Thread

Tags for this Thread

Bookmarks

Posting Permissions

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