zachatoo
Zachatoo
- 7
- Posts
- 11
- Years
- Seen May 3, 2020
I seem to be in an odd predicament.
I placed this person event (Advanced Map) in Oak's Lab, wanting it to ask if the player wanted to cheat in order to get through the game more quickly. It should then warp you to another map.
However, it always accepts @extras as true whether I select yes or no when I entered the Lab before Oak's script entering the grass. Same thing after I choose a starter pokemon. But after Oak's script and before I choose a starter, @extras is always accepted as false. Does it have something to do with Oak's script that interfere's with mine? I don't understand how that's possible due to dynamic scripts.
Spoiler:
'---------------
#dynamic 0x850000
#org @start
lock
faceplayer
msgbox @extras 0x5
if 0x1 goto @cheat
msgbox @no 0x2
release
end
#org @cheat
msgbox @follow 0x2
setvar 0x8004 0xF
setvar 0x8005 0xF
setvar 0x8006 0xF
setvar 0x8007 0xF
special 0x136
special 0x2
warp 0x4 0x6 0x0 0x0 0x3
release
end
#org @follow
= This way.
#org @extras
= Psst! Hey [PLAYER]! Over here!\pWould you like some\nextra POKéMON?
#org @no
= That's ok. I did have an ARCEUS\nbut I guess you don't want it.
#dynamic 0x850000
#org @start
lock
faceplayer
msgbox @extras 0x5
if 0x1 goto @cheat
msgbox @no 0x2
release
end
#org @cheat
msgbox @follow 0x2
setvar 0x8004 0xF
setvar 0x8005 0xF
setvar 0x8006 0xF
setvar 0x8007 0xF
special 0x136
special 0x2
warp 0x4 0x6 0x0 0x0 0x3
release
end
#org @follow
= This way.
#org @extras
= Psst! Hey [PLAYER]! Over here!\pWould you like some\nextra POKéMON?
#org @no
= That's ok. I did have an ARCEUS\nbut I guess you don't want it.
I placed this person event (Advanced Map) in Oak's Lab, wanting it to ask if the player wanted to cheat in order to get through the game more quickly. It should then warp you to another map.
However, it always accepts @extras as true whether I select yes or no when I entered the Lab before Oak's script entering the grass. Same thing after I choose a starter pokemon. But after Oak's script and before I choose a starter, @extras is always accepted as false. Does it have something to do with Oak's script that interfere's with mine? I don't understand how that's possible due to dynamic scripts.