18.04.2017, 21:31
Tente...
Se persistir, mostre a linha do erro pois assim fica foda procurar
PHP код:
dcmd_irevento(playerid, params[])
{
#pragma unused params
if(Player[playerid][pLogged] == false)
return SendClientMessage(playerid, COR_ERRO, "[ERRO] Vocк nгo estб logado!");
if(Evento[a_Status] == true)
{
if(Evento[a_Contagem] == Evento[a_Limite])
return SendClientMessage(playerid, COR_ERRO, "[ERRO] Limite de players esgotado.");
if(Player[playerid][pInEvento] == true)
return SendClientMessage(playerid, COR_ERRO, "[ERRO] Vocк jб estб no Evento!");
new string[128];
format(string, sizeof(string), "[INFO] %s foi para o Evento!", getPName(playerid));
MensagemLocal(playerid, COR_ROXO, string, 20);
LoadingObject(playerid);
ResetPlayerWeapons(playerid);
SetPlayerHealth(playerid, 100);
SetPlayerArmour(playerid, 100);
new PosEvent = random(sizeof(RandomEvento));
SetPlayerPos(playerid, RandomEvento[PosEvent][0], RandomEvento[PosEvent][1], RandomEvento[PosEvent][2]);
SetPlayerInterior(playerid, 10);
Evento[a_Contagem] ++;
Player[playerid][pInEvento] = true;
if(Evento[a_Contagem] == Evento[a_Limite])
{
SendFormattedMessageToAll(COR_EVENTO, "[INFO] Todos os %d player(s) estiveram presentes nesse Evento.", Evento[a_Limite]);
Evento[a_Status] = false;
Evento[a_Contagem] = 0;
}
}
else{
SendClientMessage(playerid, COR_ERRO, "[ERRO] O Evento estб fechado!");
}
return 1;
}