23.05.2012, 15:23
something like this
pawn Код:
//use SetTimerEx to pass the td id!
SetTimerEx("RemoveTextDraw", 2000, false "i",Arrowpickup); //set for each TD
SetTimerEx("RemoveTextDraw", 2000, false "i",Arrowpickup2); //set for each TD
// and heres the public to call.
forward RemoveTextDraw(Text:tid);
public RemoveTextDraw(Text:tid)
{
TextDrawDestroy(tid);
}