|
[How-To-WIN] Mod your Pokemon Roms, GBA
|
|
08-17-2008, 09:38 PM
Post: #1
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
Hockeypanda32's knowledge in Pokemon Hacking Learn how to hack Pokemon Ruby, Sapphire, Emerald, Leafgreen, and Firered First of all, yes you need roms to do this, giving out links is illegal so none of that! Table of Contents 1. Text Hacking 2. Mapping, and some other things in Advance Map 3. Scripting in XSE Chapter 1 Text Hacking What we need ![]() In this pic a loaded rom of Pokemon firered is in there, all basic speeches are in there now from the game, so look around and find a piece of text you want to change. Click on it and in the textbox to the right its words will appear. Edit these to your liking and be sure to keep the text in the the text border, now click save text, if you need to repoint it press yes, repoint! There you go, your first changed text, play your rom and look at it, all changed! Advanced text changing, is it not there, time to get in depth! For in depth text hacking you are going to need an emulator to find exact bits of text, you must have exact punctuation for it to work. Here is a step by step way to do this.
You can use this for anything, Item's, badges, Pokemon, Attacks, Message's, pokedex descriptions, ETC. Chapter 2, Mapping, and more in Advance Map What we need ![]() Mapping is made easier by Lu-ho's advance Map included above, open up your rom once you have opened A-Map, now on the left there will be three tabs, use the header one, on R/S/E 0 will be the outsides towns, routes, etc. and looking through the rest for others, insides, caves, etc. Choose your map you want to edit and you will see it now on your screen! After you get the map you want start editing with the tiles you see at the right until you get a fully edited map to your liking, once you play it in game though you will see that the movement permissions are the same as the map before you edited it! In your Advance Map go to the movement permissions tab. In the left now you will see that there are numbers and letters, a lot of them really do not matter though. Here is a list for each of them and what they mean! 1=not passable C=passable 4=not passable unless you use surf D=signpost 0=climbing ladders There are still others but we will not go through those now, those are basically all you need, lets say you have a tree, you would put a 1 on every part of it besides the tips tiles, finish putting in your permissions, wala, you got it... Palette Editing your tiles in the game In A-Map on the top of the app there should be a puzzle-like icon called the block editor open it up, now in here there should be a pallete tab, click on it and press "Show Palette Editor". You should see this popup. ![]() Behind it the block editor will still be there, now go through palettes and see which tiles abide to which palette and change them according to what you want your game to look like, be sure to backup your rom before this incase you edit it bad. Once done press apply after you finish each palette. When you have applied all this go back into the palette editor window and press the tab palletes and click "Apply palette changes" Edit your Tiles Once again in A-Map go to the block editor. Now you must go to the palette corresponding to the tile you want to edit! Once you find it go to the pictures tab, click save tileset 1 (tileset 2 is the other tileset), open up the file you saved in Paint now, it should have dib as its extension, you must save it as a dib also! After you are done editing just press save so it and the palette are not mistaken. Back in Advance Map go into the block editor and the pictures tab, press load tileset 0. Once you have loaded it than go back in the pictures tab and press load new blocks, wala, you got it! Advance Map Main Tabs, Map Editor, Movement Permissions etc. In the main part of Advance Map there are specific tabs for different jobs.
Connection Manager ![]() Basically you just change where your maps connect to, Offset is probably the hardest part of understanding this...the value entered here means how many tiles the map connecting to this one is delayed. If your connection goes up or down it means how many tiles it is delayed to the left of the map! A negative would make it right. Map bank and Map no. can be found simpily with this method, if your looking at your maps by sorting by header, go to the slected map, lets say it is "Lavender Town (3.5)" You want connected than the map bank would be 3 and the map no. would be 5, same with every map. Making neew connection or deleting them can be done simpily because the app pretty much guides you it self! ----------- Added information: ----------- Chapter 3, XSE Scripting What we need Table of Contents Part 1, Dynamic's Part 2, Basic Message Part 3, a yes/no basic script More to come Part 4, Flags Part 5, givepokemon Part 6, specials Part 7, movement To start us off we need to open up XSE and have a blank script tab. Now we may start scripting Part 1, dynamic's At the start of any script you must place your dynamic offset to start your script. A dynamic offset is the hexidecimal your whole script is going to rely on, Here is how you should place it at the top of your script. Code: #dynamic 0x800000800000 = Your offset, it must be an open offset. Use a free space finder to find your offsets. Advance Map has a built in one. Part 2, A Basic Message Now before we start remember to include your dynamic. After this here we place a line of code that states you are making a new script. Code: #ORG @startExplanations of these 2 words. #org = the beggining of a new offset. @start = the name of your offset, replace start with anything you want to call it. Now if we want this event to work properly as a message from a person we must include these two lines Code: lockExplanations of these 2 words. lock = you cannot move while script is going faceplayer = the person faces you Our next step will be the actual pointer to the message. All we have to type is this... Code: Message @tutorialExplanations of these 2 words. Message = pointer to a message offset @tutorial = once again the name of the offset, replace it with whatever your message's offsets are. ^This line of code is neccesary or your script wont ever do anything. Next we type this to signify wht kind of message it is. Code: boxset 6No need to explain this, now to close of the end of this offset. Code: releaseHere is what we should have so far! Code: #dynamic 0x800000 'or any offset there you want it to be thats openDon't get all happy at your first XSE script yet, we still have to make your message say something. Code: #org @tutorialTada, here is the "final" script! Code: #dynamic 0x800000 'or any offset there you want it to be thats openNo load your rom in XSE, and press compile. On the pop-up windo press copy, now in Adv-Map make a new person and put the offset you copied in the new person's offset box. Tada, now we can test it out. Part 3, is it just me or does it smell like yes/no box time? Starting us off for a yes/no script we must still place our dynamic offset, our #org @start, and our lock and faceplayer. You should have this to start off then. Code: #dynamic 0x800000Now put in a new message offset pointer, and copy the rest, I will explain everything next. Code: message @tutorialWe know the first line of code but what do the 5 other's mean? Definitions boxset 5 = yes/no box popup with message compare LASTRESULT 1 = basically means if you pressed yes if 1 goto @yes = they pressed yes and get reverted to a new offset, which is not a message, it cannot be yet compare LASTRESULT 0 = basically means if you pressed no if b_true goto @no = they pressed no and get reverted to a new offset, which is not a message, it cannot be yet Then place a release and an end and here is what we should have so far, the basis offset point Code: #dynamic 0x800000Now to place our offsets from the pointer's, lets start out with the messages. Just like a basic message script and with the pointer provided. The Message should look like this. Code: #org @tutorialNow for the offset pointer's yes and no, let's start with yes. Code: #org @yesThat looks familiar, well it is. you really just revert to another message or anything you want it to do! Now for no, if you think you can try it yourself dont look! Code: #org @noNow to make the message's pressyes and no, simple here is what you should get with them! Code: #org @pressyeshere should be your final script! Code: #dynamic 0x800000More to Come, parts 4, 5, 6, and 7! |
|||
|
08-17-2008, 09:41 PM
Post: #2
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
You've done it again panda.
Again, everyone, as hp32 states above, sharing of links for GBA Roms IS in fact illegal so don't post any! STUCK.
|
|||
|
08-17-2008, 09:42 PM
Post: #3
|
|||
|
|||
[How-To-WIN] Mod your Pokemon Roms, GBA
music4life Wrote:You've done it again panda. Haha, Thanks and yes Roms are illegal, so do not post any!
|
|||
|
08-17-2008, 09:48 PM
Post: #4
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
I don't play Pokemon.
BUT THIS. Looks like a great tut
|
|||
|
08-18-2008, 10:28 AM
Post: #5
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
Cool, looks pretty interesting.
|
|||
|
08-18-2008, 10:30 AM
Post: #6
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
That's pretty descriptive but easy to follow. Nice tutorial once again :wink:
|
|||
|
08-18-2008, 12:37 PM
Post: #7
|
|||
|
|||
[How-To-WIN] Mod your Pokemon Roms, GBA
Bob-Omb Wrote:That's pretty descriptive but easy to follow. Nice tutorial once again :wink: Thanks again, I should change my custom title to the Tutorial Wizard lol, naaa, Ipod Touch Guru is good
|
|||
|
09-11-2008, 05:37 PM
Post: #8
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
cool, ive only played pokemon blue tho >.>
|
|||
|
02-08-2009, 08:11 PM
Post: #9
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
yeah uh how come you can only enter the amount of text there is in the description. cant u like add some to it
|
|||
|
04-08-2009, 08:52 PM
Post: #10
|
|||
|
|||
|
[How-To-WIN] Mod your Pokemon Roms, GBA
Thx for the tut - great for beginners, now I finally know how to use a-map and XSE (at least the basics)
. When are parts 4-7 coming out? Or if there out where are they? O-O
|
|||
|
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)




![[Image: naamloosix1.png]](http://img237.imageshack.us/img237/4730/naamloosix1.png)
![[Image: picture2va1.png]](http://img78.imageshack.us/img78/4585/picture2va1.png)
![[Image: palette.png]](http://eugenier.eu.ohost.de/hack/tut3/palette.png)
![[Image: connections.png]](http://eugenier.eu.ohost.de/hack/tut3/connections.png)



lol, naaa, Ipod Touch Guru is good
. When are parts 4-7 coming out? Or if there out where are they? O-O