So, I'm having a strange issue with showpokepic. Spent the better part of today searching for fixes or anyone having the same problem at all, and can't find anything. This is what it looks like:
"image removed"
Here's the whole script. It uses the player's position to determine which pokeball he's looking at, so I can use the same script on all three of them. I've tried removing that and changing the vars used, and it hasn't helped.
"image removed"
Here's the whole script. It uses the player's position to determine which pokeball he's looking at, so I can use the same script on all three of them. I've tried removing that and changing the vars used, and it hasn't helped.
Code:
#dynamic 0x801E9C
#org @main
lock
getplayerpos 0x4000 0x4001
compare 0x4000 0x6
if 0x1 goto @bulbasaurDisplay
release
end
;---------------------------BULBASAUR STUFFS------------------------------
#org @bulbasaurDisplay
cry 0x1 0x0
showpokepic 0x1 0xA 0x3
msgbox @bulbasaurMessage1 0x5
closeonkeypress
compare 0x800D 0x1
if 0x1 goto @bulbasaurChoose
hidepokepic
end
#org @bulbasaurChoose
hidepokepic
givepokemon 0x1 0x5 0x0 0x0 0x0 0x0
fanfare 0x13E
msgbox @bulbasaurMessage2 0x4
waitfanfare
closeonkeypress
setflag 0x800 ;activate pokemon menu
hidesprite 0x5
setflag 0x1206
end
#org @bulbasaurMessage1
= Do you want to take\nthe GRASS type BULBASAUR?
#org @bulbasaurMessage2
= \v\h01 received the BULBASAUR!
;-------------------------------------------------------------------------