Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions addons/autocontrol/autocontrol.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ defaults.autosets.default = T{ }
defaults.AutoActivate = true
defaults.AutoDeusExAutomata = false
defaults.maneuvertimers = true

defaults.burdentracker = true

settings = config.load(defaults)

require('maneuver') -- has to be loaded after settings are parsed.
Expand Down Expand Up @@ -92,7 +93,9 @@ function initialize()
if player.pet_index then
running = 1
text_update_loop('start')
Burden_tb:show()
if settings.burdentracker then
Burden_tb:show()
end
end
end
end
Expand Down
8 changes: 6 additions & 2 deletions addons/autocontrol/maneuver.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ windower.register_event("action", function(act)
windower.send_command('@timers d Overloaded!')
heatupdate()
elseif abil_ID == 136 or abil_ID == 310 then -- Activate or Deus Ex Automata
Burden_tb:show()
if settings.burdentracker then
Burden_tb:show()
end
decay = get_decay()
activate_burden()
elseif abil_ID == 139 then
Expand Down Expand Up @@ -397,7 +399,9 @@ function zone_check(to)
if player_mob then
if player_mob.pet_index
and player_mob.pet_index ~= 0 then
Burden_tb:show()
if settings.burdentracker then
Burden_tb:show()
end
activate_burden()
end
else
Expand Down