09.02.2017, 23:18
PHP код:
if(!strcmp( cmdtext, "/repararv", true ))
{
if( pInfo[ playerid ][ Prof ] == MECANICO || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Gerente ] == 1 || pInfo[ playerid ][ PLAYER_VIP ] == 1 || aInfo[ playerid ][ *******r ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
{
if(perseguido[playerid] == 1) return SendClientMessage(playerid, COLOR_ERRO, "| ERRO | Vocк estб sendo perseguido e nгo pode reparar!");
if(!IsPlayerInAnyVehicle( playerid )) return SendClientMessage( playerid, COLOR_ERRO, "| ERRO | Vocк nгo estб em um veнculo !" );
SendClientMessage( playerid, COLOR_AMARELO, "| VIP | Veнculo reparado com sucesso!" );
new v = GetPlayerVehicleID(playerid);
SetVehicleHealth( v, 1000 );
RepairVehicle( v );
PlayerPlaySound( playerid, 1057, 0.0, 0.0, 10.0 );
}
else
{
SendClientMessage( playerid, COLOR_ERRO, "| ERRO | Vocк nгo tem permissгo!" );
}
return 1;
}
if(strcmp(cmd, "/perseguir", true) ==0)
{
if( pInfo[ playerid ][ Prof ] == GUARDA_TRANSITO || pInfo[ playerid ][ Prof ] == POL_CIVIL || pInfo[ playerid ][ Prof ] == JUIZ || pInfo[ playerid ][ Prof ] == POL_MILITAR || pInfo[ playerid ][ Prof ] == DELEGADO || pInfo[ playerid ][ Prof ] == SWAT || pInfo[ playerid ][ Prof ] == EXERCITO || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Gerente ] == 1 )
{
tmp = strtok( cmdtext, idx );
new id = strval(tmp);
if( !strlen( tmp )) return SendClientMessage(playerid, COLOR_ERRO, "| ERRO | Digite: /Perseguir [iD]");
if(GetDistanceBetweenPlayers(id,playerid) > 10) return SendClientMessage(playerid,COLOR_ERRO,"| ERRO | Chegue mais perto desse(a) jogador(a)");
if( GetPlayerWantedLevel( id ) <= 0 )
{
new naoprocurado[128];
format( naoprocurado, 128, "| ERRO | Esse jogador nгo estб procurado!", PlayerName( id ));
SendClientMessage( playerid, COLOR_ERRO, naoprocurado );
return 1;
}
if(!IsPlayerConnected( id )) return SendClientMessage( playerid, COLOR_ERRO, "| ERRO | Ninguйm Online !" );
new mostrarperseguicao[128];
format(mostrarperseguicao, sizeof(mostrarperseguicao), "| PERSEGUIЗГO | Policial %s perseguiu %s!", PlayerName(playerid), PlayerName(id));
SendClientMessageToAll(COLOR_AMARELO, mostrarperseguicao);
perseguido[id] = 1;
}
else
{
SendClientMessage(playerid, -1, "Sem permissao");
}
return 1;
}
}