- 1,103
- Posts
- 17
- Years
- Melbourne, Australia
- Seen Oct 12, 2010
Is this Script Correct. And Thank you thethethethe.
Code:#org $start lock faceplayer checkflag 0x800 message $MAGBY $MAGBY 1=This MAGBY just won't\nevolve. You can have it boxset 6 givepokemon 240 7 0 jingle message $GotMagby $GotMagby 1 =You just got a MAGBY! boxset 6 message $NameMag $NameMag 1 = Would you like to give\nMAGBY a nickname? boxset 5 compare LASTRESULT 1 if b_False goto $Bye setflag 0x828 goto $Bye #org $Bye setflag 0x800 setflag 0x801 message $Pokedex $Pokedex 1 = Take Care of MAGBY! boxset 6 jingle message $GotDex $Gotdex 1 = You Also got the National\nPokéDex boxset 6 end
Your help is Greatly appreciated.
~cooley~
Which ROM is this for?
Code:
]#org $start
lock
faceplayer
checkflag 0x800(or checkflag 0x828 for FR LG)
[B]if b_true goto $done[/B]
message $MAGBY
$MAGBY 1=This MAGBY just won't evolve.\nYou can have it.
boxset 6
givepokemon 240 7 0
jingle
message $GotMagby
$GotMagby 1 =You just got a MAGBY!
boxset 6
message $NameMag
$NameMag 1 = Would you like to give\nMAGBY a nickname?
boxset 5
compare LASTRESULT 1
if b_False goto $Bye
setflag 0x828
goto $Bye
end
#org $done(otherwise it will repeat itself over and over and over and etc.
lock
faceplayer
message $hows
$hows 1 =How's that magby going?
boxset 6
release
end
#org $Bye
setflag 0x800(setflag 0x828 for FRLG)
setflag 0x801(setflag 0x829 for FRLG)
message $Pokedex
$Pokedex 1 = Take Care of MAGBY!
boxset 6
jingle
(special 0x16F for FR LG{National DEX})
message $GotDex
$Gotdex 1 = You Also got the National PokéDex!
boxset 6
release
end