Posts: 25
Threads: 10
Joined: Jul 2010
Reputation:
0
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
Posts: 163
Threads: 40
Joined: Aug 2006
Reputation:
0
I personally recommend u that you make one using dialog menus! Those camera fixed tutorials are so annoying >_<
Posts: 1,167
Threads: 57
Joined: Jul 2010
Reputation:
0
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