Page 1 of 1

how to delete timer ?

PostPosted: Wed Feb 03, 2010 3:48 am
by linjichao
how to delete timer in timer event? i can not find some button in GE to delete Timer...

Re: how to delete timer ?

PostPosted: Wed Feb 03, 2010 5:50 am
by skydereign
If you mean the event, it is called Destroy Timer. You can use it within script editor like this.
Code: Select all
DestroyTimer("TimerName");


If you mean delete extra timers, all you do if I recall is delete the events that reference it and it should go away... I might be mistaken, haven't been able to use gameEditor in a while, a little rusty.

Re: how to delete timer ?

PostPosted: Wed Feb 10, 2010 9:48 pm
by 4erv'
Or just create another timer and do not use the old one in any actor. It should disappear if your timer was created not by event in script editor, but with the menu "Events" -> something -> "Create Timer" :D