[AJUDA] Meu minha Expressгo estб incorreta - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Meu minha Expressгo estб incorreta (
/showthread.php?tid=351693)
[AJUDA] Meu minha Expressгo estб incorreta -
viniciusxdd - 17.06.2012
Pessoal, бs vezes quando limpa uma Vaga (/infoorg) demite player que nao й da ORG que limpou
Exemplo : Sou lider da Policia Militar Limpei uma Vaga e Demiti Membro de Outra ORG
pawn Код:
if(Vaga2 == 1)// id da vaga
{
id=GetPlayerID(InfoOrg[org][Membro1]);
if(IsPlayerOnline(InfoOrg[org][Membro1])) Demitir(playerid, id);
strmid(InfoOrg[org][Membro1], "Ninguem", 0, strlen("Ninguem"), 255);
dini_Set(arquivo,"Membro1","Ninguem");
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Vocк Limpou a Vaga 1");
return 1;
}
pawn Код:
if(strcmp(cmd, "/Demitir", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "/Demitir [ID/NICK] [Motivo]");
return 1;
}
new para1;
para1 = ReturnUser(tmp);
if (PlayerInfo[playerid][pLider] > 0 || PlayerInfo[playerid][pCargo] >= 5)
{
new lolz = GetPlayerOrg(playerid);
if(PlayerInfo[para1][pMembro] != lolz)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode demitir quem nгo й da sua org.");
return 1;
}
if(IsPlayerConnected(para1))
{
if(para1 != INVALID_PLAYER_ID)
{
if (PlayerInfo[para1][pMembro] > 0)
{
GetPlayerName(para1, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /Demitir [ID/NICK] [Motivo]");
return 1;
}
DemitirInfoOrg(PlayerName(para1));
format(string, sizeof(string), "* Vocк foi demitido pelo lнder %s Motivo: %s.", sendername, (result));
SendClientMessage(para1, COLOR_LIGHTBLUE, string);
SendClientMessage(para1, COLOR_LIGHTBLUE, "* Agora vocк й um civil novamente.");
gTeam[para1] = 3;
PlayerInfo[para1][pTeam] = 3;
PlayerInfo[para1][pMembro] = 0;
PlayerInfo[para1][pCargo] = 0;
if(PlayerInfo[para1][pSex] == 1) { PlayerInfo[para1][pSkin] = 23; } else { PlayerInfo[para1][pSkin] = 12; }
SetSpawnInfo(para1, gTeam[para1], PlayerInfo[para1][pSkin],0.0,0.0,0.0,0,0,0,0,0,0,0);
MedicBill[para1] = 0;
SpawnPlayer(para1);
format(string, sizeof(string), "Vocк demitiu %s, Motivo: %s.", giveplayer, result);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
return 1;
}
}
}
}//not connected
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo й um lнder!");
}
return 1;
}
Re: [AJUDA] Meu minha Expressгo estб incorreta -
Viiih - 17.06.2012
Posta as coisas em [*pawn][*/pawn] sem a * e posta a Funзгo Demitir... Ta muito bagunзado isso.
Re: [AJUDA] Meu minha Expressгo estб incorreta -
viniciusxdd - 17.06.2012
Tentei Corrigir novamente e nao consegui.