Ellie Staff 762,507 Apr 7, 2009 #1 Just a quick q, how do I test for a terrain tag in a conditional branch, in an event? For example: If terrain_tag = 7 show message "the terrain tag is 7" Else blah End (RMXP).
Just a quick q, how do I test for a terrain tag in a conditional branch, in an event? For example: If terrain_tag = 7 show message "the terrain tag is 7" Else blah End (RMXP).
Zeriab Sponsor 895 Apr 8, 2009 #4 You can also store the terrain tag in a variable and check that in a conditional branch. Upvote 0 Downvote
boon Sponsor 703 Apr 8, 2009 #5 Zeriab":3vxlawfo said: You can also store the terrain tag in a variable and check that in a conditional branch. Click to expand... Yeah, so at the start of the command set say; variable 1 to terrain tag 7. Then Conditional Branch: If 'Variable 1' == 7 do stuff else do stuff end Upvote 0 Downvote
Zeriab":3vxlawfo said: You can also store the terrain tag in a variable and check that in a conditional branch. Click to expand... Yeah, so at the start of the command set say; variable 1 to terrain tag 7. Then Conditional Branch: If 'Variable 1' == 7 do stuff else do stuff end