09.03.2009, 00:28
Quote:
Originally Posted by .:>|★Fr4zZ★|<:.
I DO NOT need people flaming about it, but my gamemode is PEN1.
|
A tutorial can be simply made with a timer every X seconds, updating a variable. For example, timer every 15 seconds.
pawn Код:
Tutorial[playerid] = 1; //Put this when the tutorial starts
if(Tutorial[playerid] == 1)
{
SendClientMessage(playerid,COLOR_ISEEDEADPEOPLE,"Don't dm you nubcake");
Tutorial[playerid] = 2;
//Camera views
}
else if(Tutorial[playerid] == 2)
{
SendClientMessage(playerid,COLOR_ISEEDEADPEOPLE,"You can buy sausage rolls from the 24-7");
Tutorial[playerid] = 3;
//Camera views
}