@@ -17,8 +17,8 @@ function MinimapOverlays:Load()
17
17
TriggerEvent (" ScUI:getMinimapHandle" , function (handle )
18
18
self .minimapHandle = handle
19
19
end )
20
- i = i + 1
21
- if i == 2 then
20
+ i = i + 1
21
+ if i == 2 then
22
22
break
23
23
end
24
24
Wait (1000 )
@@ -39,7 +39,7 @@ Citizen.CreateThread(function()
39
39
while true do
40
40
Wait (0 )
41
41
if MinimapOverlays .minimapHandle ~= 0 then
42
- local success , event_type , context , item_id = GetScaleformMovieCursorSelection ( MinimapOverlays .minimapHandle )
42
+ local success , event_type , context , item_id = GetScaleformMovieCursorSelection (MinimapOverlays .minimapHandle )
43
43
if success then
44
44
if context == 1000 then
45
45
MinimapOverlays .minimaps [item_id + 1 ].OnMouseEvent (event_type )
@@ -87,7 +87,8 @@ function MinimapOverlays:AddSizedOverlayToMap(textureDict, textureName, x, y, ro
87
87
88
88
SetStreamedTextureDictAsNoLongerNeeded (textureDict )
89
89
90
- local overlay = MinimapOverlay .New (# self .minimaps + 1 , textureDict , textureName , x , y , rotation , width , height , alpha , centered )
90
+ local overlay = MinimapOverlay .New (# self .minimaps + 1 , textureDict , textureName , x , y , rotation , width , height , alpha ,
91
+ centered )
91
92
table.insert (self .minimaps , overlay )
92
93
return overlay
93
94
end
@@ -132,7 +133,30 @@ function MinimapOverlays:AddScaledOverlayToMap(textureDict, textureName, x, y, r
132
133
133
134
SetStreamedTextureDictAsNoLongerNeeded (textureDict )
134
135
135
- local overlay = MinimapOverlay .New (# self .minimaps + 1 , textureDict , textureName , x , y , rotation , xScale , yScale , alpha , centered )
136
+ local overlay = MinimapOverlay .New (# self .minimaps + 1 , textureDict , textureName , x , y , rotation , xScale , yScale ,
137
+ alpha , centered )
138
+ table.insert (self .minimaps , overlay )
139
+ return overlay
140
+ end
141
+
142
+ function MinimapOverlays :AddAreaOverlay (coords , outline , color )
143
+ local points = {}
144
+ for _ , coord in ipairs (coords ) do
145
+ table.insert (points , string.format (" %.2f:%.2f" , coord .x , coord .y ))
146
+ end
147
+
148
+ local tobeparsed = table.concat (points , " ," )
149
+
150
+ CallMinimapScaleformFunction (self .overlay , " ADD_AREA_OVERLAY" )
151
+ ScaleformMovieMethodAddParamPlayerNameString (tobeparsed )
152
+ ScaleformMovieMethodAddParamBool (outline )
153
+ ScaleformMovieMethodAddParamInt (color .R )
154
+ ScaleformMovieMethodAddParamInt (color .G )
155
+ ScaleformMovieMethodAddParamInt (color .B )
156
+ ScaleformMovieMethodAddParamInt (color .A )
157
+ EndScaleformMovieMethod ()
158
+
159
+ local overlay = MinimapOverlay .New (# self .minimaps + 1 , " " , " " , 0 , 0 , 0 , 0 , 0 , color .A , true )
136
160
table.insert (self .minimaps , overlay )
137
161
return overlay
138
162
end
0 commit comments