So, trying to figure out how the PFM applies an expression. For example, if I simply wanted to go into the battle_entities and double the hit points of everything, it is simply x=(x*2). Rather easy. But what if I only wanted to double the hit points of something that is less than 100? I haven't figured that one out at all. I have tried x=(x<100(x*2)) which obviously won't work, but I also tried x=If(x<100),(x*2). So that if statement won't work. Not sure how to do a conditional expression on it, or is this not possible?




Reply With Quote




