/Circa
a face in the clouds.
- 881
- Posts
- 17
- Years
- Melbourne, Victoria
- Seen Jul 22, 2023
Thanks to EarthsVisitor for the Open-Source Script idea..
Well, I am planning on using this for my next hack, when I get far enough to finish tiling the aeroplane, but this is free for anyone to use. It's one of my good ideas xD. Well so far, my only good idea, it is pretty simple. It does require some movements after answering YES to one question, but I left that for you guys to fill in. Ofcourse, you'll need to change the warp data.
Name: Airport Script.
Works With: FR/LG/R/S/E.
Creator: Crashink.
Script:
Well, I am planning on using this for my next hack, when I get far enough to finish tiling the aeroplane, but this is free for anyone to use. It's one of my good ideas xD. Well so far, my only good idea, it is pretty simple. It does require some movements after answering YES to one question, but I left that for you guys to fill in. Ofcourse, you'll need to change the warp data.
Name: Airport Script.
Works With: FR/LG/R/S/E.
Creator: Crashink.
Script:
Code:
#org $begin
lock
faceplayer
message $flightchooser
$flightchooser 1 = Hello, welcome to PokeWorld Airport.\nYou can choose where you\nare to fly to.\pHere we go.
boxset 6
message $kanto
$kanto 1 = Would you like to fly to Kanto?
boxset 5
compare LASTRESULT 1
if 1 goto $flytokanto
message $johto
$johto 1 = Would you like to fly to Johto?
boxset 5
compare LASTRESULT 1
if 1 goto $flytojohto
message $sinnoh
$sinnoh 1 = Would you like to fly to Sinnoh?
boxset 5
compare LASTRESULT 1
if 1 goto $flytosinnoh
message $orangeislands
$orangeislands 1 = Would you like to fly to the\nOrange Islands?
boxset 5
compare LASTRESULT 1
if 1 goto $flytoorange
message $orre
$orre 1 = Would you like to fly to Orre?
boxset 5
compare LAsTRESULT 1
if 1 goto $flytoorre
release
end
#org $flytokanto
message $enjoyflightkanto
$enjoyflightkanto 1 = Enjoy your flight to Kanto!
boxset 6
warp 0x0 0x0
release
end
#org $flytojohto
message $enjoyflightjohto
$enjoyflightjohto 1 = Enjoy your flight to Johto!
boxset 6
warp 0x0 0x0
release
end
#org $flytosinnoh
message $enjoyflightsinnoh
$enjoyflightsinnoh 1 = Enjoy your flight to Sinnoh!
boxset 6
warp 0x0 0x0
release
end
#org $flytoorange
message $enjoyflightorange
$enjoyflightorange 1 = Enjoy your flight to the\nOrange Islands!
boxset 6
warp 0x0 0x0
release
end
#org $flytoorre
message $enjoyflightorre
$enjoyflightorre 1 = Enjoy your flight to Orre!
boxset 6
warp 0x0 0x0
release
end