SA-MP Forums Archive
Problem with the color of a gang zone - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Problem with the color of a gang zone (/showthread.php?tid=144501)



Problem with the color of a gang zone - LTomi - 27.04.2010

I have two gang zones, but there is a problem with one. The problem is the color of that gang zone. I set its color to green in the script, but it always appears grey. Here is my code:

OnGameModeInit:
pawn Код:
seville = GangZoneCreate(2614.1431,-2120.9365,2874.8496,-1881.0516);
    costigan = GangZoneCreate(617.4039,-1601.9988,807.0232,-1385.0349);
OnPlayerSpawn:
pawn Код:
GangZoneShowForAll(costigan,0x000000AA);
    GangZoneShowForAll(seville,0x339900AA);
Please help me!


Re: Problem with the color of a gang zone - [SF]RobMob - 27.04.2010

OnGameModeInIt
seville = GangZoneCreate(2614.1431,-2120.9365,2874.8496,-1881.0516);
costigan = GangZoneCreate(617.4039,-1601.9988,807.0232,-1385.0349);

OnPlayerSpawn
GangZoneShowForPlayer(playerid, costigan, 0x000000AA);
GangZoneShowForPlayer(playerid, seville, 0x339900AA);


Re: Problem with the color of a gang zone - LTomi - 28.04.2010

Tried it, but the Seville's color is still bugged.


Re: Problem with the color of a gang zone - LTomi - 29.04.2010

bump™