12.08.2015, 15:07
Fiz aqui, mas nгo testei creio eu que nгo tem erro!
Topo do GM
Public
ex de comando!
Topo do GM
PHP код:
static Profissao[MAX_PLAYERS];
#define COR_GOVERNO 0x87CEFAFF
#define COR_PM 0x4682B4FF
#define COR_PF 0x808080FF
#define COR_GN 0x006400FF
#define COR_MEC 0x556B2FFF
#define COR_VAGOS 0xFFFF00FF
#define COR_AZTECAS 0x0000FFFF
#define GOVERNO 0
#define POLICIA_MILITAR 1
#define POLICIA_FEDERAL 2
#define GUARDA_NACIONAL 3
#define MECANICO 4
#define VAGOS 5
#define AZTECAS 6
PHP код:
forward CarregarProfissao(playerid);
public CarregarProfissao(playerid)
{
if (Profissao[playerid] == GOVERNO)
{
SetPlayerColor(playerid, COR_GOVERNO);
}
else if(Profissao[playerid] == POLICIA_MILITAR)
{
SetPlayerColor(playerid, COR_PM);
}
else if(Profissao[playerid] == POLICIA_FEDERAL)
{
SetPlayerColor(playerid, COR_PF);
}
else if(Profissao[playerid] == GUARDA_NACIONAL)
{
SetPlayerColor(playerid, COR_GN);
}
else if(Profissao[playerid] == MECANICO)
{
SetPlayerColor(playerid, COR_MEC);
}
else if(Profissao[playerid] == VAGOS)
{
SetPlayerColor(playerid, COR_VAGOS);
}
else if(Profissao[playerid] == AZTECAS)
{
SetPlayerColor(playerid, COR_AZTECAS);
}
return 1;
}
PHP код:
CMD:governo(playerid)
{
Profissao[playerid] = GOVERNO;
SendClientMessage(playerid, -1, "Agora vocк faz parte do governo");
return 1;
}