07.03.2009, 21:02
I use a passworded skin system but when I unlock it with the pass It says Unknown Command but it Works!
At the top:
Passwroded Skins at OnPlayerRequestClass:
At OnPlayerSpawn:
At OnPlayerCommandText:
Warning :
At the top:
Код:
new bool:Locked[MAX_PLAYERS];
Код:
if(classid==stars1){ GameTextForPlayer(playerid,"~b~~h~S.T.A.R.S ONLY",1000,3); gTeam[playerid] = STARS; Locked[playerid] = true; SetPlayerColor(playerid,COLOR_BLUE);} if(classid==stars2){ GameTextForPlayer(playerid,"~b~~h~S.T.A.R.S ONLY",1000,3); gTeam[playerid] = STARS; Locked[playerid] = true; SetPlayerColor(playerid,COLOR_BLUE);} if(classid==stars3){ GameTextForPlayer(playerid,"~b~~h~S.T.A.R.S ONLY",1000,3); gTeam[playerid] = STARS; Locked[playerid] = true; SetPlayerColor(playerid,COLOR_BLUE);} if(classid==stars4){ GameTextForPlayer(playerid,"~b~~h~S.T.A.R.S ONLY",1000,3); gTeam[playerid] = STARS; Locked[playerid] = true; SetPlayerColor(playerid,COLOR_BLUE);}
Код:
if(bool:Locked[playerid] == true) //If player's current class is locked, { //then.. ForceClassSelection(playerid); //force him to selection menu SetPlayerHealth(playerid, 0); return 1; } else { return 1; }
Код:
if(strcmp(cmdtext, "/unlock mypass") == 0)//YOUR_PASS is different than YouR_PaSS { Locked[playerid] = false; }
Код:
C:\DOCUME~1\Gustavo\Desktop\SAMP02~1.WIN\GAMEMO~1\BioVirus.pwn(233) : warning 225: unreachable code Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warnings.