Page 1 of 1

One question ?

PostPosted: Tue Feb 13, 2007 3:43 pm
by BabaRoga
how can i make when blood is 0 / 100 ( actor.textNumber = 0) to destroy actor

PostPosted: Tue Feb 13, 2007 10:48 pm
by makslane
You can put this code in the actor you want to destroy:

Code: Select all
if(textNumber == 0)
{
   DestroyActor("Event Actor");
}