22.02.2011, 20:15
to com o mesmo problema cara olha:
e:
mais ele fala que nao esta em um territorio auguem ajudaaa
pawn Код:
if(PlayerInfo[playerid][pMember] == 22 || PlayerInfo[playerid][pLeader] == 22)// AQ
{
if(IsPlayerInBoate(playerid))
{
if(Dominando[playerid] == 1)
{
SendClientMessage(playerid, COLOR_GRAD5, "Vocк jб estб dominando um territуrio.");
return 1;
}
if(GuerranoBoate == 1)
{
SendClientMessage(playerid, COLOR_GRAD5, "Jб estб tendo uma guerra nesse territуrio.");
return 1;
}
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
format(string, sizeof(string), "%s e a Al-Qaeda Estao Domindo a Zona De Guerra",playername);
SendClientMessageToAll(0x503400AA, string);
SendClientMessage(playerid, COLOR_GRAD5, "Espere 1 minuto para dominar esta бrea .");
GangZoneFlashForAll(GZBoate,0x503400AA);
Dominando[playerid] = 1;
ProvocoBoate[playerid] = 1;
GuerranoBoate = 1;
TempoGuerraBoate = SetTimerEx("GuerraBoate", 60000, 0, "i", playerid);
return 1;
}
else
{
SendClientMessage(playerid, COLOR_GRAD3, "Vocк nгo estб em nenhum territуrio!");
}
pawn Код:
GangZoneCreate(444.7051,2554.0813, -118.7813,1686.2780);
pawn Код:
stock IsPlayerInBoate(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= 444.7051 && y >= 2554.0813 && x <= -118.7813 && y <= 1686.2780) return 1;
else return 0;
}