Abend. ich versuch gerade das die Textdraw nach 3 secunden automatischen wieder geht. Wie macht man das?
//Stopanim (pressf)
pressf = TextDrawCreate(420,430, "For Stop press: F");
TextDrawBackgroundColor(pressf,0x0048FFDD);
TextDrawFont(pressf,3);
TextDrawColor(pressf,-1);
TextDrawSetOutline(pressf,1);
TextDrawSetProportional(pressf,1);
TextDrawSetShadow(pressf,0);
TextDrawShowForAll(Text:pressf);
if (strcmp("/smoke", cmdtext, true, 10) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_SMOKE_CIGGY);
TextDrawShowForPlayer(playerid,pressf); //das soll nach 3 secunden wieder gehen.
return 1;
}