01.09.2018, 18:25
Acho que jб vi esses videos dele e nгo tem o /Promover se nгo tiver use essa base abaixo se tiver usa a de baixo tbm -'
PHP код:
enum oInfo
{
bool:Recruta,
bool:Assaltante,
bool:Traficante,
bool:Terrorista,
bool:Lider
};
new InfoOrg[MAX_PLAYERS][oInfo];
CMD:promoverorg(playerid, params[])
{
if(!IsPlayerAdmin(playerid))
return SendClientMessage(playerid, -1, "| ERRO | Vocк nгo tem permissгo!");
if(sscanf(params, "ud", id, Cargo))
return SendClientMessage(playerid, -1, "| ERRO | Use: /PromoverOrg [ID] [Cargo]");
if(!IsPlayerConnected(id))
return SendClientMessage(playerid, -1, "| ERRO | ID Invбlido!");
if(Cargo < 1 || Cargo > 5)
return SendClientMessage(playerid, -1, "| ERRO | Cargo Invбlido [1-5]!");
if(Cargo == 1)
{
InfoOrg[id][Recruta] = true;
}
if(Cargo == 2)
{
InfoOrg[id][Assaltante] = true;
}
if(Cargo == 3)
{
InfoOrg[id][Traficante] = true;
}
if(Cargo == 4)
{
InfoOrg[id][Terrorista] = true;
}
if(Cargo == 5)
{
InfoOrg[id][Lider] = true;
}
return 1;
}