13.01.2013, 13:32
Unsure, try setting a timer.
pawn Код:
if(pickupid == gsoruzje)
{
GameTextForPlayer(playerid, "~w~/kupi", 2000, 2);
SetTimerEx("ClearText",2000,0,"i",playerid);
}
//Bottem of your script
forward ClearText(playerid);
public ClearText(playerid)
{
GameTextForPlayer(playerid, "", 1000, 2);
return 1;
}

