29.07.2014, 21:41
I assume that the player can only use the command when he joins the server for the first time, right? If so refer to the code below, otherwise explain more about it, and how you would like it.
pawn Код:
new bool:TutorialPermission[MAX_PLAYERS] = false;
// OnPlayerRegister:
TotutialPermission[playerid] = true;
// Command "/startcareer":
if(TotutialPermission[playerid] == false) return SendClientMessage(playerid, 0xFFFFFFFF, "You can't use this command anymore.");
TotutialPermission[playerid] = false;