19.07.2018, 19:19
Topo da GM:
ajeita e testa
PHP код:
#define PRESSED(%0) \
(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
PHP код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if (PRESSED(KEY_SECONDARY_ATTACK))
{
if(IsPlayerInRangeOfPoint(playerid, 3.0, 1766.4453, -1713.7134, 13.5489))
{
if(Player[playerid][pEXT] >= 1 || Player[playerid][pBOPE] >= 1 || Player[playerid][pPMRJ] >= 1)return SendClientMessage(playerid, COR_ERRO, "ERRO: Policial nгo rouba banco ;)");
if(Player[playerid][pTempoBanco] >= 1)
{
SendFormattedMessage(playerid, COR_ERRO, "ERRO: Vocк jб roubou o banco recentemente, espere %s.", Convert(Player[playerid][pTempoBanco]));
return 1;
}
static Ladrao[MAX_PLAYER_NAME], sStr[70];
new Float:Pos[3];
SetPlayerWantedLevel(playerid, GetPlayerWantedLevel(playerid) + 1);
Player[playerid][pProcurado] += 1;
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
GetPlayerName(playerid, Ladrao, sizeof(Ladrao));
if(Roubando[playerid] == 1) return SendClientMessage(playerid, 0xE31919FF, "[~] Vocк jб estб assaltando!");
format(sStr, sizeof(sStr), "[NOTНCIAS] %s[%d] Plantou uma Bomba no Caixa Eletrуnico!", Ladrao, playerid);
SendClientMessageToAll(0xE31919FF, sStr);
Bomba = CreateObject(1252, Pos[0], Pos[1], Pos[2] - 0.8,270,0,0);
ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0);
SetPlayerAttachedObject(playerid, 3, 1550, 1, 0.1, -0.3, 0, 0, 40, 0, 1, 1, 1);
format(sStr, sizeof(sStr), "Espere no local %d minutos para concluir o saqueamento!", TempoRoubo);
SendClientMessage(playerid, 0xC9C9C9FF, sStr);
SendClientMessage(playerid, 0xFF7777AA, "Vocк foi feito um procurado da justiзa. | Crime: 157.");
SetTimerEx("Roubou", 60000*TempoRoubo,false,"d", playerid);
Roubando[playerid] = 1;
new city[64] = "Nгo identificado";
new string[100];
switch(GetPlayerCity(playerid))
{
case CITY_LS: city = "Los Santos";
case CITY_SF: city = "San Fierro";
case CITY_LV: city = "Las Venturas";
}
format(string,sizeof(string),"HQ{FFFFFF}: Chamando Todas As Ъnidades, Denъncia de {4876FF}Banco.");
SendMessageToCops(0xFF0000AA, string);
format(string,sizeof(string),"HQ{FFFFFF}: Crime: 157 | Suspeito: %s | Local: %s !", getPName(playerid), city);
SendMessageToCops(0xFF0000AA, string);
SalvarPlayer(playerid);
return 1;
}
if(newkeys == KEY_SECONDARY_ATTACK)
{
if(PlayerToPoint(1.0, playerid, 2927.863769,-1785.710815,1191.065673))
{
ShowPlayerDialog(playerid, 18, DIALOG_STYLE_LIST, "BANCO", "Saldo\nDepositar\nSacar", "Ok", "Cancelar");
}
}