Then incorporate the number into the tag.
Like: Child0,Child1,Child2,Child3
void main()
{
int i;
object child;
for( i=0; i<4; i++)
{
string childTag = "Child"+IntToString(i);
child = GetObjectByTag(childTag);
AssignCommand( child, ClearAllActions(TRUE) );
DestroyObject( child, 5.0 );
AssignCommand( child, ActionMoveToObject( wp ));
}
}
Modifié par Mudeye, 24 septembre 2010 - 03:45 .