09.11.2011, 02:41
pawn Код:
// do like this
// this on your command
if (strcmp("/your command", cmdtext, true, 10) == 0)
SetTimer("destroy", 8000, false); // 1000 miliseconds (1 second)
// this on bottom of your gamemode or filterscript
forward destroy();
public destroy()
{
DestroyObject(your object id);
}