- 59
- Posts
- 9
- Years
- He / Him
- Seen May 19, 2022
So currently I've got a script in FireRed that, upon talking to an NPC, will give you the Mysticticket and Auroraticket, but I've heard that just having the items is not enough to trigger the event. I also can't find the item code for the Old Sea Map in Emerald anywhere, so I can't complete my script for that.
1) Does anyone know of a way to activate the events without cheats since they don't work by just having the items?
2) Does anyone know the XSE item code for the Old Sea Map in Emerald, or how I can find it out (like using a cheat to obtain it and then finding it by looking through the save file or something like that)?
EDIT: I found the item code for the Old Sea Map, now I just need to know how to enable the event without using cheats.
Script:
1) Does anyone know of a way to activate the events without cheats since they don't work by just having the items?
EDIT: I found the item code for the Old Sea Map, now I just need to know how to enable the event without using cheats.
Script:
Spoiler:
Code:
#dynamic 0x37F320
#org @start
lock
faceplayer
checkflag 0x1201
if 0x1 goto @nomore
msgbox @talk1 0x6
giveitem 0x113 0x1 0x0
giveitem 0x172 0x1 0x0
giveitem 0x173 0x1 0x0
giveitem 0x178 0x1 0x0
setflag 0x1201
release
end
#org @nomore
msgbox @talk2 0x6
release
end
#org @talk1
= Hey, I've got some neat stuff for \nyou!
#org @talk2
= For my own POKéMON, I give them\nperfectly suited nicknames!\pIt's my expression of, uh[.]\noriginality, yes, that's it!
Last edited: