16.10.2012, 13:41
PHP код:
if(strcmp(cmd, "/paredao", true)==0 || strcmp(cmd, "/paredaoadm", true)==0)
{
if(PlayerInfo[playerid][pJailed] != 0)
{
SendClientMessage(playerid,COLOR_YELLOW," Você não pode colocar paredao na cadeia!");
return true;
}
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != DONO)
{
SendClientMessage(playerid, COLOR_GRAD1, "Você não está no serviço da administração do ThunderLife! (/servicoadmin)");
return true;
}
if (PlayerInfo[playerid][pAdmin] == 0) return SendClientMessage(playerid, COLOR_GREY, "Você não é Admin!");
if (PlayerInfo[playerid][pParedao] != 0) return SendClientMessage(playerid, COLOR_GREY, "Você só pode implantar 1 paredao de cada vez, /rparedao - para remover seu bloqueio.");
new Float:X, Float:Y, Float:Z, Float:A;
GetPlayerPos(playerid, X, Y, Z);
GetPlayerFacingAngle(playerid, A);
PlayerInfo[playerid][pParedao] = CreateObject
(972, X, Y, Z-2, 0.0, 0.0, A+90);
SetPlayerPos(playerid, X, Y, Z+4);
GameTextForPlayer(playerid, "~w~Paredao ~r~Criado", 5000, 5);
SendClientMessage(playerid, COLOR_GREEN, "Paredão Implantado... Use /rparedao Para Remover e Poder Criar Mais!.");
format(string, sizeof(string), "AdmAviso: Um Paredão foi posto por %s.", PlayerName(playerid));
ABroadCast(COLOR_YELLOW, string, 1);
return true;
}
if(strcmp(cmd, "/removerparedao", true)==0 || strcmp(cmd, "/rparedao", true)==0)
{
if (PlayerInfo[playerid][pAdmin] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Você não é um Admin!");
return true;
}
if (PlayerInfo[playerid][pParedao] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Você não criou nenhum paredão!");
return true;
}
RemoveParedao(playerid);
SendClientMessage(playerid, COLOR_GREEN, "Paredão removido com sucesso.");
return true;
}
if(strcmp(cmd, "/removerparedaotodos", true)==0 || strcmp(cmd, "/rpall", true)==0)
{
if (PlayerInfo[playerid][pAdmin] >= 3)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][pParedao] != 0)
{
RemoveParedao(i);
}
}
}
format(string, sizeof(string), "Estado: Todos os Paredões foram retirados por: %s.", PlayerName(playerid));
ABroadCast(TEAM_BLUE_COLOR, string, 1);
}
else
{
SendClientMessage(playerid, COLOR_GREY, "Você precisa ser admin nivel 3 + pra remover os paredões!");
}
return true;
}
Oq tem de errado ae? e.e