maximum911
Beggining Scripter
- 104
- Posts
- 17
- Years
- Seen Nov 1, 2009
Okay I'm creating this XSE tutorial because none of the other ones work!
I don't think the authors of the tutorials did it on purpose but they don't work.
For this Tutorial I'm Going to assume some things.
Here is some code from HOckeyPanda32's XSE tutorial.
you can test this code if you want. It won't work all you will get is an empty message box and the person you talked to won't stay still. That is because there is no lock command instead there is lockall. And the empty message box is because there is no message command instead there is msgbox. SO the correct XSE script would be
thats all for now since I have to teach myself it will take a while but I will add more to this tutorial. And the people who made the bad tutorials can use my code fix there tutorials and make them work. There will be more lol!
I don't think the authors of the tutorials did it on purpose but they don't work.
For this Tutorial I'm Going to assume some things.
- First that you have read some of the other XSE tutorials like Seth's and Hockeypanda32's
- Second that you have done super basic scripting with pokescript. Don't worry though you just need to understand what the commands are supposed to do. Not what they did.
- A blank Pokemon ROM I'm Using Fire Red 1.0 but it's your choice.
- A copy of XSE DUH!
- A copy of Advance Map
Here is some code from HOckeyPanda32's XSE tutorial.
Code:
#dynamic 0x800000 'or any offset there you want it to be thats open
#org @start
lock
faceplayer
Message @tutorial
boxset 6
release
end
#org @tutorial
= This is my first script!
Code:
#dynamic 0x800000
#org @start
lockall
faceplayer
msgbox @tutorial
boxset 6
release
end
#org @tutorial
= This is my first script!