-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsb_settings.lua
28 lines (25 loc) · 946 Bytes
/
sb_settings.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
local UIWidgets = {"HUD Presets",
"EPIC Menu", "Chili Crude Player List", "Chili Core Selector", "Chili Economy Panel Default",
"Chili Global Commands", "Chili EndGame Window", "Chili Integral Menu", --"Chili Resource Bars Classic",
"Chili Minimap", "Chili Pro Console", "Chili Selections & CursorTip v2"}
return {
startStop = {
x = "48.5%",
y = 52,
},
OnStopEditingUnsynced = function()
for _, widgetName in ipairs(UIWidgets) do
widgetHandler:EnableWidget(widgetName)
end
end,
OnStartEditingUnsynced = function()
for _, widgetName in ipairs(UIWidgets) do
widgetHandler:DisableWidget(widgetName)
end
Spring.SendCommands("tooltip 0")
gl.SlaveMiniMap(true)
SB.delay(function()
widgetHandler:DisableWidget("Chili Economy Panel Default")
end)
end,
}