How i can make a Tutorial @Server? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How i can make a Tutorial @Server? (
/showthread.php?tid=159959)
How i can make a Tutorial @Server? -
Schnacke - 15.07.2010
Hi all,
my question is how i can make a Tutorial for the player?
i want to make a tutorial after register but I do not know how, always something wrong
Re: How i can make a Tutorial @Server? -
aNdReSk - 15.07.2010
I personally recommend u that you make one using dialog menus! Those camera fixed tutorials are so annoying >_<
Re: How i can make a Tutorial @Server? -
ikey07 - 15.07.2010
after player is registered, set for exa: Tutor[playerid] = 1;
and SetPlayerSpawn.
than in spawn section add new
if(Tutor[playerid] == 1)
{
SendClientMessage(COLOR_WHITE,"Hello this is tutorial");
}
than you can set timer (or add Tutor[playerid]++; in some 1 sec loop functions, like OtherTimer in GF) for exa change views etc
somthing like that