- 1
- Posts
- 1
- Years
- Yukon, Canada
- Seen Jan 16, 2024
Hello, I'm sure this is absolutely been helped before but all of the threads I've found nothing seems to be working.
---edit This is for Fire Red.
All I'm trying to do is a extremely basic msgbox. I'm sure I'll struggle a lot on this project if I can't even figure out why this isn't working.
'---------------
#org 0x800792
lock
faceplayer
msgbox 0x880079C MSG_SIGN '"Hi.[player]\p I can't wait to hear \pall a..."
release
end
'---------
' Strings
'---------
#org 0x80079C
= Hi.[player]\p I can't wait to hear \pall about your exciting adventures!
The issue I'm having is that whenever I talk to the NPC the game just freezes. The NPC script offset is set to $800792, movement type "Walk around" perseon event (2), person event no(3). Everything else is 0.
I have a script basically the same that works without any issues.
'---------------
#org 0x800445
lock
faceplayer
msgbox 0x8800452 MSG_NORMAL '"I love the view of the beach \pyou..."
release
end
'---------
' Strings
'---------
#org 0x800452
= I love the view of the beach \pyou can see so many wonderful\n pokemon from here
Any help would be vastly appreciated. First time using this type of coding so I'm pretty thrown off.
---edit This is for Fire Red.
All I'm trying to do is a extremely basic msgbox. I'm sure I'll struggle a lot on this project if I can't even figure out why this isn't working.
Spoiler: Script
'---------------
#org 0x800792
lock
faceplayer
msgbox 0x880079C MSG_SIGN '"Hi.[player]\p I can't wait to hear \pall a..."
release
end
'---------
' Strings
'---------
#org 0x80079C
= Hi.[player]\p I can't wait to hear \pall about your exciting adventures!
The issue I'm having is that whenever I talk to the NPC the game just freezes. The NPC script offset is set to $800792, movement type "Walk around" perseon event (2), person event no(3). Everything else is 0.
I have a script basically the same that works without any issues.
Spoiler: Working Script
'---------------
#org 0x800445
lock
faceplayer
msgbox 0x8800452 MSG_NORMAL '"I love the view of the beach \pyou..."
release
end
'---------
' Strings
'---------
#org 0x800452
= I love the view of the beach \pyou can see so many wonderful\n pokemon from here
Any help would be vastly appreciated. First time using this type of coding so I'm pretty thrown off.