- Joined
- Apr 26, 2014
- Messages
- 211
- Reaction score
- 39
- First Language
- English
- Primarily Uses
I'm having a little trouble with my overdrive formulas (overdrive damage scales with tp then sets tp to 0)
these three formula don't deal any damage for some reason:
c = a.tp; ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0
c = a.tp; (a.mat * (1+rand(6))) * (1+(c/25)); a.tp = 0
c = a.tp; b.result.critical=true; ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0
this one works just fine though
c = a.tp; d = ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0; b.state?(47) ? d * 2.5 : d
I'm not sure what I'm missing.
these three formula don't deal any damage for some reason:
c = a.tp; ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0
c = a.tp; (a.mat * (1+rand(6))) * (1+(c/25)); a.tp = 0
c = a.tp; b.result.critical=true; ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0
this one works just fine though
c = a.tp; d = ((a.atk * a.mdf) - b.def) * (1+(c/25)); a.tp = 0; b.state?(47) ? d * 2.5 : d
I'm not sure what I'm missing.
