Could you give a little more information regarding your issue? You're not really specifying what "value" you're talking about.
I want to know the value of trainer battle like 0*1Could you give a little more information regarding your issue? You're not really specifying what "value" you're talking about.
0x0-Normal trainer battle setup script as so:I want to know the value of trainer battle like 0*1
And when we use that values
#dynamic 0x800000
#org @start
trainerbattle 0x0 0xTrainer 0x0 @fight @lose
msgbox @talk 0x6
end
#org @fight
= I say this when I see you!
#org @lose
= I say this when I lose the battle
#org @talk
= I say this if you talk to me afterwards
#dynamic 0x800000
#org @start
....
trainerbattle 0x1 0xTrainer 0x0 @fight @lose @after
end
#org @after
msgbox @talk 0x6
end
#org @fight
= I say this when I see you!
#org @lose
= I say this when I lose the battle
#org @talk
= I say this if you talk to me afterwards
#dynamic 0x800000
#org @start
trainerbattle 0x3 0xTrainer 0x0 @fight @lose
continues....
end
#org @fight
= I say this when I see you!
#org @lose
= I say this when I lose the battle
#org @talk
= I say this if you talk to me afterwards
Thankshttps://sphericalice.com/romhacking/documents/script/#c-5C
That link has a comprehensive list of what all the different values for trainerbattle do.