-
Wrong section in the forums.
-
Please use code tags : Using code tags properly
-
Assuming that p.beingCarried is set correctly, the way you have set up your code is that, let’s say you want to play grab (so move == false and p.beingCarried == true), at this line : else if (!move ), it stops evaluating further, since the condition is fulfilled so there is no “else”. The quickest fix would be to reorder the if statements, so the bottom two are evaluated first.