- 36
- Posts
- 6
- Years
- Seen Apr 18, 2024
Is there a script I could use to give the player running shoes early in the game, like when they first walk downstairs? I was thinking that the mother walks towards them and gives them running shoes, telling the player to use the B button to run.
Here's the original mother script:
Here's the original mother script:
Spoiler:
'---------------
#org 0x168C09
lock
faceplayer
checkflag 0x258
if 0x1 goto 0x8168C4A
checkgender
compare LASTRESULT 0x0
if 0x1 call 0x8168C38
compare LASTRESULT 0x1
if 0x1 call 0x8168C41
closeonkeypress
applymovement 0x1 0x81A75E5
waitmovement 0x0
release
end
'---------------
#org 0x168C4A
msgbox 0x818D3D1 MSG_KEEPOPEN '"MOM: [player]!\nYou should take a ..."
closeonkeypress
call 0x81A6C26
msgbox 0x818D3F8 MSG_KEEPOPEN '"MOM: Oh, good! You and your\nPOKéM..."
release
end
'---------------
#org 0x168C38
msgbox 0x818D2F0 MSG_KEEPOPEN '"MOM: [.]Right.\nAll boys leave hom..."
return
'---------------
#org 0x168C41
msgbox 0x818D360 MSG_KEEPOPEN '"MOM: [.]Right.\nAll girls dream of..."
return
'---------------
#org 0x1A6C26
fadescreen 0x1
fanfare 0x100
waitfanfare
special 0x0
fadescreen 0x0
return
'---------
' Strings
'---------
#org 0x18D3D1
= MOM: [player]!\nYou should take a quick rest.
#org 0x18D3F8
= MOM: Oh, good! You and your\nPOKéMON are looking great.\lTake care now!
#org 0x18D2F0
= MOM: [.]Right.\nAll boys leave home someday.\lIt said so on TV.\pOh, yes. PROF. OAK, next door, was\nlooking for you.
#org 0x18D360
= MOM: [.]Right.\nAll girls dream of traveling.\lIt said so on TV.\pOh, yes. PROF. OAK, next door, was\nlooking for you.
'-----------
' Movements
'-----------
#org 0x1A75E5
#raw 0x5A 'mov5A
#raw 0xFE 'End of Movements
#org 0x168C09
lock
faceplayer
checkflag 0x258
if 0x1 goto 0x8168C4A
checkgender
compare LASTRESULT 0x0
if 0x1 call 0x8168C38
compare LASTRESULT 0x1
if 0x1 call 0x8168C41
closeonkeypress
applymovement 0x1 0x81A75E5
waitmovement 0x0
release
end
'---------------
#org 0x168C4A
msgbox 0x818D3D1 MSG_KEEPOPEN '"MOM: [player]!\nYou should take a ..."
closeonkeypress
call 0x81A6C26
msgbox 0x818D3F8 MSG_KEEPOPEN '"MOM: Oh, good! You and your\nPOKéM..."
release
end
'---------------
#org 0x168C38
msgbox 0x818D2F0 MSG_KEEPOPEN '"MOM: [.]Right.\nAll boys leave hom..."
return
'---------------
#org 0x168C41
msgbox 0x818D360 MSG_KEEPOPEN '"MOM: [.]Right.\nAll girls dream of..."
return
'---------------
#org 0x1A6C26
fadescreen 0x1
fanfare 0x100
waitfanfare
special 0x0
fadescreen 0x0
return
'---------
' Strings
'---------
#org 0x18D3D1
= MOM: [player]!\nYou should take a quick rest.
#org 0x18D3F8
= MOM: Oh, good! You and your\nPOKéMON are looking great.\lTake care now!
#org 0x18D2F0
= MOM: [.]Right.\nAll boys leave home someday.\lIt said so on TV.\pOh, yes. PROF. OAK, next door, was\nlooking for you.
#org 0x18D360
= MOM: [.]Right.\nAll girls dream of traveling.\lIt said so on TV.\pOh, yes. PROF. OAK, next door, was\nlooking for you.
'-----------
' Movements
'-----------
#org 0x1A75E5
#raw 0x5A 'mov5A
#raw 0xFE 'End of Movements