Page 1 of 1

Super Mario RPG Editor?!

Posted: Sat Jan 31, 2009 3:48 am
by DJ Yoshi
Holy damn; check it.

Crazy.

Re: Super Mario RPG Editor?!

Posted: Sat Jan 31, 2009 9:25 am
by LeonBlade
Ahh Rom hacks...

I remember using tools like Advance Map to create maps for Pokemon games lol.
Then there was this "scripting language" they used called Pokescript which you use to... write scripts for NPCs and everything...

Code: Select all

#org $startScript
lock
faceplayer
message $random
$random 1 = Hello there!
boxset 6
release
end
the #ORG was the start of a new offset, where the compiler would find free space in the rom and enter its data there.
Everything with the money sign was a variable. It represented free space in the rom that would later be assigned an address, basically taking the stress out of finding free space yourself ;)
lock stops the NPC your talking to from moving.
faceplayer makes the NPC face you.
message takes in the message address your message is on.
The line after that sets the message.
boxset is the style of message box that appears, 6 was standard message and 5 was yes/no responce (there where others too I believe)
release releases the lock on the NPC
And end is the end of that script.

You would then compile the script and it would return to you all the addresses that it found for your variables.
You could then go into your map editor and make a new NPC event.
Then in the script property, assign it the value you got for the startscript offset you made.
Then you can save your game and test, you walk up to the NPC and he talks to you.

Sorry, I kind of got off-topic in a way, just thought I'd like to share lol.
It's really cool stuff though, if anyone is interested, you should check it out it was kinda fun...

Re: Super Mario RPG Editor?!

Posted: Sat Jan 31, 2009 10:09 am
by Trask
I remember that pokescript stuff! I used to be such a pokemon nerd when Red and Blue first came to america... I even watched the anime and the first 2 movies. I loved Mew and the concept of, he's in the game, but you're an american and can't have him. So I'd obsessively try out like every long winded tip to get him... good times.