31.03.2018, 12:13
Bom estava passando um gm de strcmp para zcmd e qnd cheguei sistema de org reparei que deu uns erro chato de tmp cmd etc etc podem me ajudar?
Code
Code
PHP код:
CMD:recrutarAL(playerid, params[])
{
if(IsPlayerAdmin(playerid) || pInfo[playerid][pAL] == 8)
{
new plid, skin, tmp, strtok, cmd, idx;
tmp = strtok(cmd, idx);
if (!strlen(tmp))
return SendClientMessage(playerid, Vermelho, "** Digite: /recrutarAL [id] [ 1 a 8 ]");
plid = strval(tmp);
tmp = strtok(cmd, idx);
if(!strlen(tmp))
return SendClientMessage(playerid, Vermelho, "** Digite: [id] [ 1 a 8 ]");
skin = strval(tmp);
if(!IsPlayerConnected(plid))
return SendClientMessage(playerid, Vermelho, "** Jogador nгo conectado.");
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, pname);
switch ( skin )
{
case 0:
{
PlayerInfo[plid][pAL] = 0;
TaemORGAL[plid] = 0;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) (») retirou o jogador: %s (%d) da [aL] Atiradores de Leite.", aname,playerid,pname,plid);
SendClientMessageToAll(Cor6, string);
}
case 1:
{
PlayerInfo[plid][pAL] = 1;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) (») Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL1);
SendClientMessageToAll(Cor6, string);
}
case 2:
{
PlayerInfo[plid][pAL] = 2;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) (») Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL2);
SendClientMessageToAll(Cor6, string);
}
case 3:
{
PlayerInfo[plid][pAL] = 3;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL3);
SendClientMessageToAll(Cor6, string);
}
case 4:
{
PlayerInfo[plid][pAL] = 4;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL4);
SendClientMessageToAll(Cor6, string);
}
case 5:
{
PlayerInfo[plid][pAL] = 5;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL5);
SendClientMessageToAll(Cor6, string);
}
case 6:
{
PlayerInfo[plid][pAL] = 6;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL6);
SendClientMessageToAll(Cor6, string);
}
case 7:
{
PlayerInfo[plid][pAL] = 7;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL7);
SendClientMessageToAll(Cor6, string);
}
case 8:
{
PlayerInfo[plid][pAL] = 8;
TaemORGAL[plid] = 1;
format(string, sizeof(string), "» O Dono da [aL] %s (%d) Promoveu: %s (%d) para %s da [aL] Atiradores de Leite.", aname,playerid,pname,plid,AL8);
SendClientMessageToAll(Cor6, string);
}
default: SendClientMessage(playerid, Vermelho, "** Skin invalida! Use valores de 0 a 8!");
}
return 1;
}
}
}