Hello. Here is my situation:
//this is in the draw actor for the turret of the tank (enemyt)
if(enemy.health<1)
dead=1;
//enemy is the tank body, health and dead are both actor variables
The problem is i need to make clones of both and i need a formula that will match the body with the turret
(enemy.0 and enemyt.0, enemy.1 and enemyt.1... and so on) so if enemy.0 health fell below 1 enemyt.0 dead would equal 1.
Can anyone help me?