24.08.2015, 21:40
(
Последний раз редактировалось MarllonGTA; 24.08.2015 в 22:23.
Причина: Resolvido
)
Estou com Dificuldade nos Comandos Abaixo. Eles sу estгo funcionando pra o ID 0
Nгo importa qual ID eu ponho, seja 1 ou 500, ele sу pega no ID 0
Poderiam me explicar o Problema e como resolver?
Nгo importa qual ID eu ponho, seja 1 ou 500, ele sу pega no ID 0
pawn Код:
dcmd_aprender(playerid, params[])
{
#pragma unused params
if(Player[playerid][pEXC] >= 5 || Player[playerid][pBOPE] >= 5 || Player[playerid][pCORE] >= 5 || Player[playerid][pPMRJ] >= 5)
{
new i;
if (ProxDetectorS(8.0, playerid, i))
{
Player[i][pTempoPreso] = 10;
Player[i][pPresoLV] = 1;
SpawnPlayer(i);
new string[256];
format(string, sizeof(string), "<< O Policial %s prendeu %s. >>", getPName(playerid), getPName(i));
SendClientMessageToAll(COR_CV,string);
}
} else SendClientMessage(playerid, COR_ERRO, "ERRO: Vocк nгo tem permissгo para usar este comando!");
return 1;
}
pawn Код:
dcmd_rdrogas(playerid, params[])
{
#pragma unused params
if(!IsPM(playerid, 1))
return SendClientMessage(playerid, COR_ERRO, "ERRO: Vocк nгo tem permissгo para usar este comando!");
if(EmTrabalho[playerid] == 0)
return SendClientMessage(playerid, COR_ERRO, "ERRO: Vocк nгo estб em trabalho!");
new id;
if(!IsPlayerConnected(id))
return SendClientMessage(playerid, COR_ERRO, "ERRO: Este jogador nгo estб conectado.");
if (ProxDetectorS(5.0, playerid, id))
{
if(Player[playerid][pCORE] >= 5) TotalMaconhaApreendida[1] += Player[id][pMaconha];
else if(Player[playerid][pEXC] >= 5) TotalMaconhaApreendida[2] += Player[id][pMaconha];
else if(Player[playerid][pBOPE] >= 5) TotalMaconhaApreendida[3] += Player[id][pMaconha];
else if(Player[playerid][pPMRJ] >= 5) TotalMaconhaApreendida[4] += Player[id][pMaconha];
if(Player[playerid][pCORE] >= 5) TotalCocainaApreendida[1] += Player[id][pCocaina];
else if(Player[playerid][pEXC] >= 5) TotalCocainaApreendida[2] += Player[id][pCocaina];
else if(Player[playerid][pBOPE] >= 5) TotalCocainaApreendida[3] += Player[id][pCocaina];
else if(Player[playerid][pPMRJ] >= 5) TotalCocainaApreendida[4] += Player[id][pCocaina];
if(Player[playerid][pCORE] >= 5) TotalLancaApreendida[1] += Player[id][pLanca];
else if(Player[playerid][pEXC] >= 5) TotalLancaApreendida[2] += Player[id][pCocaina];
else if(Player[playerid][pBOPE] >= 5) TotalLancaApreendida[3] += Player[id][pLanca];
else if(Player[playerid][pPMRJ] >= 5) TotalLancaApreendida[4] += Player[id][pLanca];
Player[id][pMaconha] = 0;
Player[id][pCocaina] = 0;
Player[id][pLanca] = 0;
SendFormattedMessage(id, COR_INFO, "{535353}INFO: O polнcial %s retirou suas drogas.", getPName(playerid) );
SendFormattedMessage(playerid, COR_INFO, "{535353}INFO: Vocк retirou as drogas de %s.", getPName(id) );
SalvarDadosOrgsCops();
}
return 1;
}
pawn Код:
dcmd_infobtl(playerid,params[])
{
#pragma unused params
new id,pName[MAX_PLAYER_NAME],stringa[128],stringb[128],stringc[128];
GetPlayerName(id, pName, MAX_PLAYER_NAME);
if(Player[id][pEXC] >=8 || Player[id][pBOPE] >= 8 || Player[id][pPMRJ] >= 8 || Player[id][pCORE] >= 8)
{
SendClientMessage(playerid, COR_ADA, " » ------------------------------------------------------------------------------------ «");
format(stringa,sizeof(stringa),"{00FF00}*** Informaзхes policiais de %s ***",pName);
SendClientMessage(playerid,COR_PRINCIPAL,stringa);
format(stringb,sizeof(stringb),"{FFFFFF}*** Quantidade de Su's efetuados [%d] ***",Player[id][sutotal]);
SendClientMessage(playerid,COR_PRINCIPAL,stringb);
format(stringc,sizeof(stringc),"{FFFFFF}*** Total de Suspeitos abatidos [%d] ***",Player[id][suabatidos]);
SendClientMessage(playerid,COR_PRINCIPAL,stringc);
SendClientMessage(playerid, COR_ADA, " » ------------------------------------------------------------------------------------ «");
}
else
{
format(stringa,sizeof(stringa),"{00FF00}%s nгo й um Policial!",pName);
SendClientMessage(playerid,COR_PRINCIPAL,stringa);
}
return 1;
}