14.06.2015, 08:20
Why would you use textdraws as a parameter of that timer? Create the timer for playerid, and delete the textdraws within the body of the timer's function.
Plus, textdraws are not an integer, boolean, floating integer, string or any other data type. It is an on-screen object.
PHP Code:
SetTimerEx("EndOfTD", 3000, false, "i", playerid);
forward EndOfTD(playerid);
public EndOfTD(playerid)
{
// Delete the textdraws here
return 1;
}