SA-MP Forums Archive
[Ajuda]Comando bugado - 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]Comando bugado (/showthread.php?tid=280521)



[Ajuda]Comando bugado - DrTHE - 01.09.2011

bem com meu ultimo post nehum dos cmd funcionou
eu consegui arranjar este
pawn Код:
/*if(strcmp(cmd, "/prender", true) == 0)
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(dini_Int(file, "Profissao") == Policial_C || dini_Int(file, "Profissao") == Policial_F || dini_Int(file, "Profissao") == Delegado || dini_Int(file, "Profissao") == Bope || dini_Int(file, "Profissao") == Swat || dini_Int(file, "Profissao") == Narcoticos || dini_Int(file, "Profissao") == Policial_M || dini_Int(file, "Profissao") == FBI || dini_Int(file, "Profissao") == LSPD || dini_Int(file, "aAdmin") == 1)
{
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "(ERRO) Use: /prender [id] [Motivo]");
return 1;
}
plid = strval(tmp);
if(IsPlayerInAnyVehicle(plid) == 1 || IsPlayerInAnyVehicle(playerid) == 1)
{
SendClientMessage(playerid, Vermelho, "(ERRO) Alguem estб dentro de um carro.");
return 1;
}
tmp = strtok(cmdtext, idx);
new chars = 12+strlen(tmp);
strmid(tmp,cmdtext,chars,strlen(cmdtext));
if(!strlen(tmp)) { SendClientMessage(playerid, Vermelho, "(ERRO) Use /prender [ID] [Motivo]"); return 1; }
new mot[256];
mot = tmp;
if(plid == playerid)
{
SendClientMessage(playerid, Vermelho, "(ERRO) Vocк nгo pode fazer isto com si mesmo.");
return 1;
}
if(!IsPlayerConnected(plid))
{
SendClientMessage(playerid, Vermelho, "(ERRO) O jogador nгo estб conectado");
return 1;
}
else
{
if(GetDistanceBetweenPlayers(plid,playerid) < 10)
{
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
format(string, sizeof(string), "(INFO) O Policial %s te prendeu (MOTIVO: %s).", aname, mot);
SendClientMessage(plid, Blue, string);
SetPlayerPos(plid, 263.8820,77.4002,1001.0391);
SetPlayerInterior(plid, 6);
SetPlayerHealth(plid, 99999);
ResetPlayerWeapons(plid);
dini_IntSet(file2, "Preso", 1);
SendClientMessage(playerid, COLOR_GREEN, "(INFO) Preso com sucesso.");
SetPlayerWantedLevel(plid, 0);
preso[plid] = 1;
TogglePlayerControllable(plid, 1);
if(Procurados[plid] == 1)
{
GivePlayerGrana(playerid,5000);
Procurados[plid] = 0;
SendClientMessage(playerid, Verde, "(INFO) Vocк prendeu um jogador procurado e ganhou 5 mil!");
dini_IntSet(file2, "Procurado", 0);
}
return 1;
} else {
SendClientMessage(playerid,Vermelho,"(ERRO) Chegue mais perto para prender!");
return 1;
}
}
} else {
SendClientMessage(playerid,Vermelho,"(ERRO) Apenas policiais podem usar este comando!");
return 1;
}
}*/
o problema й q qd vc digita ex: /prender 0 teste
ele n prende
so prende se vc digitar /prender 0 teste teste2
so aparece como Motivo: o "teste2"

Help-me


Re: [Ajuda]Comando bugado - Pharrel - 01.09.2011

mas o comando nгo й... /prender [id] [tempo] [motivo] ?


Re: [Ajuda]Comando bugado - DrTHE - 01.09.2011

o objetivo do cmd й /prender [id] [motivo]