SA-MP Forums Archive
Loading Textdraw - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Loading Textdraw (/showthread.php?tid=553932)



Loading Textdraw - AgusZ - 01.01.2015

i finish create this textdraw and how to make this textdraw work ?





Re : Loading Textdraw - MCZOFT - 01.01.2015

i'd like to help you but what is your Question .?

do you want this textdraw after a while disapear or after a while setting your class etc . .? ?


Re: Loading Textdraw - AgusZ - 01.01.2015

Yes. how ??

sorry im new in scripting


onplayerconnect this textdraw show and loading 5 sec and after loading goto request class


Re: Loading Textdraw - nezo2001 - 01.01.2015

How what ??


Re: Loading Textdraw - Ryz - 01.01.2015

learn to create textdraw https://sampforum.blast.hk/showthread.php?tid=376758

Use timer to delay class selection Ex:

pawn Код:
//add this at onplayerconnect
TogglePlayerSpectating(playerid, true);
SetTimerEx("Delay", 5000, false, "i", playerid);

//add after all call backs

forward Delay(playerid);
public Delay(playerid)
{
     TogglePlayerSpectating(playerid, false);
    return 1;
}



Re: Loading Textdraw - AgusZ - 01.01.2015

Thanks All