when he attack he use choose(1,2,3,4) number variable i want to make sure he does not use the same attack 2 times
Develop games in your browser. Powerful, performant & highly capable.
Sorry, let me edit.
Use 2 variables, last_attack, next_attack.
While next_attack = last_attack:
next_attack<-choose(1,2,3,4)
thanks