Skip to content

Commit

Permalink
feat: Added intimidation to main combat routine
Browse files Browse the repository at this point in the history
  • Loading branch information
rawmotion1 committed Jun 3, 2023
1 parent e336ae4 commit 09e8c41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions init.lua
@@ -1,6 +1,6 @@
--LeRogue.lua
--by Rawmotion
local version = '3.0.2'
local version = '3.0.3'
--- @type Mq
local mq = require('mq')
--- @type ImGui
Expand Down Expand Up @@ -349,7 +349,7 @@ local function execute(name, kind)
local stop
local printName
if type(name) == 'string' then
if name == 'hide' or name == 'sneak' or name == 'disarm' then
if name == 'hide' or name == 'sneak' or name == 'disarm' or name == 'intimidation' then
category = 1
start = function() mq.cmdf('/doability %s', name) end
stop = function() return not mq.TLO.Me.AbilityReady(name)() end
Expand Down Expand Up @@ -439,6 +439,7 @@ end
local function doOther()
execute('disarm')
execute('hide')
execute('intimidation')
end

local function breathe()
Expand Down

0 comments on commit 09e8c41

Please sign in to comment.