05.12.2012, 23:53
Galera me ajuddem '
tipo eu vo la e algemo alguem aew a mao de quem eu algemei fika pa traz
ai eu desalgemo ela ' ela conseg anda ' so qe a mao dela fika pra traz ainad ' alguem me ajuuuuuuda ' pf
tipo eu vo la e algemo alguem aew a mao de quem eu algemei fika pa traz
ai eu desalgemo ela ' ela conseg anda ' so qe a mao dela fika pra traz ainad ' alguem me ajuuuuuuda ' pf
pawn Код:
if (strcmp(cmd, "/desalgemar", 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_M || 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") == FBI || dini_Int(file, "Profissao") == Interpol || dini_Int(file, "Profissao") == LSPD || dini_Int(file, "aAdmin") == 1)
{
new tmp[128];
new plid;
tmp = strtok(cmdtext, idx);
if (!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "[x] Use: /desalgemar [id]");
return 1;
}
plid = strval(tmp);
if (IsPlayerInAnyVehicle(plid) == 1 || IsPlayerInAnyVehicle(playerid) == 1)
{
SendClientMessage(playerid, Vermelho, "[x] Alguem estб dentro de um carro.");
return 1;
}
if (plid == playerid)
{
SendClientMessage(playerid, Vermelho, "[x] Vocк nгo pode tirar algemas de vocк mesmo.");
return 1;
}
if (!IsPlayerConnected(plid))
{
SendClientMessage(playerid, Vermelho, "[x] O jogador nгo estб conectado");
return 1;
}
else
{
if (GetDistanceBetweenPlayers(plid, playerid) < 10)
{
ClearAnimations(plid);
RemovePlayerAttachedObject(plid,4);
format(string, sizeof(string), "(INFO) O Policial %s te desalgemou.", aname);
SendClientMessage(plid, Blue, string);
TogglePlayerControllable(plid, 1);// mas oq eu mudei n tem nada a ver... per a aientra la pra ve agr' vc mudo uma coisa esqueceu ^^
SendClientMessage(playerid, COLOR_GREEN, "(INFO) Desalgemado com sucesso.");
algemado[plid] = 0;
return 1;
}
else
{
SendClientMessage(playerid, Vermelho, "(INFO) Chegue mais perto para desalgemar.");
return 1;
}
}
}
else
{
SendClientMessage(playerid, Vermelho, "(INFO) Apenas policiais podem usar este comando.");
return 1;
}
}