♥♦♣ϖ Posted April 8, 2009 Share Posted April 8, 2009 (edited) 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 ) 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 April 9, 2009 by ♥♦♣♠Luxord♥♦♣♠ Link to comment Share on other sites More sharing options...
Sabresite Posted April 8, 2009 Share Posted April 8, 2009 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. Link to comment Share on other sites More sharing options...
♥♦♣ϖ Posted April 8, 2009 Author Share Posted April 8, 2009 Thank you very much. Well Once you learn hex. it is very very easy Thanks again! Link to comment Share on other sites More sharing options...
-_- Posted April 8, 2009 Share Posted April 8, 2009 this is great allows for uber exp cheat which is a great alternative to the 999 rare candies cheat Link to comment Share on other sites More sharing options...
♥♦♣ϖ Posted April 8, 2009 Author Share Posted April 8, 2009 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 More sharing options...
damio Posted April 8, 2009 Share Posted April 8, 2009 Some values cannot go higher than a certain amount in game, if you find this amount, just make it lower (eg. money) Link to comment Share on other sites More sharing options...
Janime6 Posted April 9, 2009 Share Posted April 9, 2009 Then there are those float values. Great guide, Luxord. Did you mention you can use your Calculator on your computer to convert? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now