16.08.2011, 23:13
Tipo quero saber qual funзao ve se a pessoa estб vendo o tutorial pela primeira vez e dps nao precisar mais ver?
new Tutorial[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
if(Tutorial[playerid] == 1) return 1;
if(Tutorial[playerid] == 0)
{
SendClientMessage(playerid, 0xE31919FF, "[~] {FFFFFF}Vocк agora irб ver o tutorial '-' ");
sTutorial(playerid);
return 1;
}
return 1;
}
stock sTutorial(playerid)
{
SendClientMessage(playerid, 0xE31919FF, "[~] {C9C9C9}Vocк viu o tutorial!");
Tutorial[playerid] = 1;
return 1;
}