HackMew
Mewtwo Strikes Back
- 1,314
- Posts
- 18
- Years
- Seen Oct 26, 2011
Okay, that works fine! Thank You So much Hackmew, for help with this script!:D
You're welcome :)
I made this script, I'm having some trouble, it won't work for me, can anyone see a problem with it?
Spoiler:
#org 0x800000
Lock
FacePlayer
SetWeather 0x3
DoWeather
MsgBox Ugh! It's raining again, you better come see me in the lab.
BoxSet 0x6
Release
End
The problem is you're using the msgbox command in the wrong way. It needs the pointer to the text, and not the text itself indeed.
I'll show you how:
Spoiler:
#dynamic 0x800000
#org @start
lock
faceplayer
setweather 0x3
doweather
msgbox @ugh
boxset 0x6
release
end
#org @ugh
= Ugh! It's raining again, you\nbetter come see me in the lab.
#org @start
lock
faceplayer
setweather 0x3
doweather
msgbox @ugh
boxset 0x6
release
end
#org @ugh
= Ugh! It's raining again, you\nbetter come see me in the lab.