26.07.2014, 15:59
You don't use SetTimer like this and this is not how you pass variables through timers. You should of used SetTimerEx
pawn Код:
SetTimerEx("DeleteIt", 5000, false, "i", chatlabel); // Calls "DeleteIt" after 5 seconds and passes 'chatlabel' to the function
forward DeleteIt(id); // just forwarding
public DeleteIt(id) // here id is the text label id which you passed before
{
Delete3DTextLabel(id); // deletes it
return 1;
}