15.07.2016, 12:32
ok put it in ur skip tutorial command
this will be set as this
PHP код:
CMD:skiptutorial(playerid,params[])
{
if(PlayerData[playerid][pTutorial] == 0) return SendClientMessage(playerid,-1, "You are not in tutorial.");
}
PHP код:
public OnPlayerCommandReceived(playerid, cmdtext[])
{
if (!SQL_IsLogged(playerid) || (PlayerData[playerid][pTutorialStage] > 0 || PlayerData[playerid][pKilled] > 0 || PlayerData[playerid][pHospital] != -1))
return 0;
if (PlayerData[playerid][pMuted] && strfind(cmdtext, "/unmute", true))
{
SendErrorMessage(playerid, "You are muted by the system.");
return 0;
}
return 1;
}