How is this possible? - 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)
+--- Thread: How is this possible? (
/showthread.php?tid=505904)
How is this possible? -
TonyII - 10.04.2014
Hey, I wonder how this person got the minimap blacked out like this, how would he have done that?
Re: How is this possible? -
Konstantinos - 10.04.2014
I guess it's a gang zone in the whole SA word and it uses black color (alpha to 00 as well).
Re: How is this possible? -
MP2 - 10.04.2014
Gangzone that covers the whole of San Andreas.
Re: How is this possible? -
TonyII - 10.04.2014
Oh wow, never thought of that, thanks I'll try if it's possible.
Re: How is this possible? -
ShaneOvSina - 10.04.2014
Код:
GZ_ZONE1 = GangZoneCreate(-3000,-3070.3125,3035.15625,3000);
GangZoneShowForAll(GZ_ZONE1, 0x00000096);
new GZ_ZONE1;
public OnGameModeInit()
{
GZ_ZONE1 = GangZoneCreate(-3000,-3070.3125,3035.15625,3000);
return 1;
}
public OnPlayerConnect(playerid)
{
GangZoneShowForAll(GZ_ZONE1, 0x000000FF);
return 1;
}
This Works for me.
Re: How is this possible? -
SickAttack - 11.04.2014
Quote:
Originally Posted by TonyII
Oh wow, never thought of that, thanks I'll try if it's possible.
|
Anything is possible if you work for it, or at lest try.