- 9
- Posts
- 12
- Years
- UK
- Seen Mar 16, 2018
Hey Guys and Girls, within my code I have managed to make it so that a NPC gives you a pokedex and running shoes and only gives them once, that is until you go to another part of the map (a house or to a different route). What I need help with is making the NPC only give it once even if you go into a different part of the map. Here is my code displayed within the spoiler.
'---------------
#org 0x71AF16
lock
faceplayer
checkflag 0x7
if 0x1 goto 0x871AF3F
msgbox 0x871AF5E MSG_YESNO '"I got these starting items for my\..."
compare LASTRESULT 0x1
if 0x1 goto 0x871AF4A
msgbox 0x871AFC4 MSG_NORMAL '"That's okay. I'm sure someone else..."
release
end
'---------------
#org 0x71AF3F
msgbox 0x871B0EC MSG_NORMAL '"I have nothing else to give you.\n..."
release
end
'---------------
#org 0x71AF4A
setflag 0x82F
setflag 0x829
msgbox 0x871CE14 MSG_NORMAL '"[black_fr][player] recieved Runnin..."
setflag 0x7
release
end
'---------
' Strings
'---------
#org 0x71AF5E
= I got these starting items for my\ngrandson but he left home without\lthem. Do you want them instead?
#org 0x71AFC4
= That's okay. I'm sure someone else\nwill take them.
#org 0x71B0EC
= I have nothing else to give you.\nSorry!
#org 0x71CE14
= [black_fr][player] recieved Running Shoes\nand a Pokédex from the old lady!
Spoiler:
'---------------
#org 0x71AF16
lock
faceplayer
checkflag 0x7
if 0x1 goto 0x871AF3F
msgbox 0x871AF5E MSG_YESNO '"I got these starting items for my\..."
compare LASTRESULT 0x1
if 0x1 goto 0x871AF4A
msgbox 0x871AFC4 MSG_NORMAL '"That's okay. I'm sure someone else..."
release
end
'---------------
#org 0x71AF3F
msgbox 0x871B0EC MSG_NORMAL '"I have nothing else to give you.\n..."
release
end
'---------------
#org 0x71AF4A
setflag 0x82F
setflag 0x829
msgbox 0x871CE14 MSG_NORMAL '"[black_fr][player] recieved Runnin..."
setflag 0x7
release
end
'---------
' Strings
'---------
#org 0x71AF5E
= I got these starting items for my\ngrandson but he left home without\lthem. Do you want them instead?
#org 0x71AFC4
= That's okay. I'm sure someone else\nwill take them.
#org 0x71B0EC
= I have nothing else to give you.\nSorry!
#org 0x71CE14
= [black_fr][player] recieved Running Shoes\nand a Pokédex from the old lady!
Last edited: