Jump to content

Recommended Posts

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).

Edited by ♥♦♣♠Luxord♥♦♣♠
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...