[HELP]Lines on map - 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: [HELP]Lines on map (
/showthread.php?tid=674378)
[HELP]Lines on map -
David2212 - 18.04.2020
How to make this lines (RED) and zones (YELLOW)
https://imgur.com/Slg7IJp
Re: [HELP]Lines on map -
xRadical3 - 18.04.2020
pawn Code:
//streamer plugin
CreateDynamicRectangle(Float:minx, Float:miny, Float:maxx, Float:maxy, worldid = -1, interiorid = -1, playerid = -1);
Re: [HELP]Lines on map -
David2212 - 18.04.2020
It is not visible
I need color or what ?
Re: [HELP]Lines on map -
xRadical3 - 18.04.2020
pawn Code:
native GangZoneShowForPlayer(playerid, gangzoneid, color);
native GangZoneShowForAll(gangzoneid, color);
Re: [HELP]Lines on map -
David2212 - 18.04.2020
Code:
new Gg;
Gg = CreateDynamicRectangle(-52, 1645, 391, 2104);
GangZoneShowForAll(Gg, COLOR_RED);
I did like this ,
but it is not visible
Re: [HELP]Lines on map -
JasonRiggs - 18.04.2020
Quote:
Originally Posted by David2212
Code:
new Gg;
Gg = CreateDynamicRectangle(-52, 1645, 391, 2104);
GangZoneShowForAll(Gg, COLOR_RED);
I did like this ,
but it is not visible
|
Because you created a rectangle buy showed a zone tho..
you should do it like that
PHP Code:
new Gg;
Gg = GangZoneCreate(-52, 1645, 391, 2104);
GangZoneShowForAll(Gg, COLOR_RED);
Re: [HELP]Lines on map -
David2212 - 18.04.2020
I need only outer layer to be visible
like on this picture , red line
https://imgur.com/Slg7IJp not like this yellow on pic
Re: [HELP]Lines on map -
David2212 - 18.04.2020
I need to make zone look like this RED on map
Look:
https://imgur.com/m9glSYY
Re: [HELP]Lines on map -
Adamoneoone - 18.04.2020
Quote:
Originally Posted by David2212
|
Like i said, do 4 gang zones.
Re: [HELP]Lines on map -
Threshold - 19.04.2020
This isn't one single gangzone, this is rather 4 narrow gangzones all joined together.