23.04.2016, 12:41
i made 3 gang zones...2 are working correctly and 1 is not..
under public OnGameModeInit()
gangzones...
OnPlayerUPdate
other two has same code and it send client message that u are in gangzone 2 or 1 but it doesn't send message for 3rd.
I'm using InterActive GangZones: https://sampforum.blast.hk/showthread.php?tid=556670
and simple a_zone includes.....
Any Help?
Код:
new gangzoneone; new gangzonetwo; new gangzonethree;
under public OnGameModeInit()
gangzones...
PHP код:
gangzoneone= GangZoneCreate(69.0464, -2975.5249, 3030.7229, -421.0719);
gangzonetwo= GangZoneCreate(-3129.2268, -1278.4356, -629.3846, 1275.7016);
gangzonethree= GangZoneCreate(-3129.2268, -1278.4356, -629.3846, 1275.7016);
PHP код:
if(IsPlayerInGangZone(playerid, gangzonethree))
{
SendClientMessage(playerid, COLOR_RED, "WARNING: {FFFFFF}You have entered gangzone 3.");
I'm using InterActive GangZones: https://sampforum.blast.hk/showthread.php?tid=556670
and simple a_zone includes.....
Any Help?