Hello everybody, I have a doubt, I'm trying to create a group of attacks with the "curse element" basically they are attacks which has a chance to make 9999 of damage, at least the target has certain state which nulify this posibility (it'll make damage still, but it won't have a chance to make 9999 of damage)
For example: "Demon fang" makes certain damage but it has a 40% of chance to make 9999 of damage, at least the target has the "curse protection" state (state id 40) so I made this formula to test it:
b.state?(40) or rand(100) <= 40 ? 500 : 9999
Allright, now in this formula I want to make the 9999 of damage ignores the "guard" command and the damage variance, BUT I don't want the 500 of damage do that, is that possible? How?
Well, thanks a lot who anyone can solve this problem