- Joined
- Feb 9, 2017
- RedCents
- 1,610¢
- RGMercs Build?
- latest
- What level is the character?
- 125
When setting a toon outside of group as MA / Outside Assist the toon never leaves combat state. Therefore never does the downtime functions.
When it marks the assist in the extended target window.
Even when in downtime the rogue sneak/hide is not kicking in.
Update: I see that when in chase mode it is set to basically turn off sneak and not use sneak / hide. I assume this is for a rogue that walks when he sneaks. I don't have that issue. I'm not sure what level or when the aa is used that gives you run speed while sneaking, but can add a check. Like and level >= 65 or check for the specific aa. Anyway, just a quick and dirty bypass working great for sneak hide on bards in chase mode.
Rogue_Class_Config around line 486
When it marks the assist in the extended target window.
Even when in downtime the rogue sneak/hide is not kicking in.
Update: I see that when in chase mode it is set to basically turn off sneak and not use sneak / hide. I assume this is for a rogue that walks when he sneaks. I don't have that issue. I'm not sure what level or when the aa is used that gives you run speed while sneaking, but can add a check. Like and level >= 65 or check for the specific aa. Anyway, just a quick and dirty bypass working great for sneak hide on bards in chase mode.
Rogue_Class_Config around line 486
Code:
{
name = "Hide & Sneak",
type = "CustomFunc",
active_cond = function(self)
return mq.TLO.Me.Invis() and mq.TLO.Me.Sneaking()
end,
cond = function(self)
return RGMercUtils.GetSetting('DoHideSneak')
end,
custom_func = function(_)
--if RGMercUtils.GetSetting('ChaseOn') then
--if mq.TLO.Me.Sneaking() then
--RGMercUtils.DoCmd("/doability sneak")
--end
--else
--if mq.TLO.Me.AbilityReady("sneak")() then RGMercUtils.DoCmd("/doability sneak") end
--if mq.TLO.Me.AbilityReady("hide")() then RGMercUtils.DoCmd("/doability hide") end
--end
if mq.TLO.Me.Invis('SOS')() == false and mq.TLO.Me.Class.ShortName() == 'ROG' then
mq.cmd('/makemevisible')
mq.cmd('/dismount')
mq.delay(500)
if mq.TLO.Me.Sneaking() == false then
while mq.TLO.Me.AbilityReady('Sneak')() == false do
mq.delay(10)
end
mq.cmd('/doability sneak')
end
while mq.TLO.Me.AbilityReady('Hide')() == false do
mq.delay(10)
end
mq.cmd('/doability hide')
end
return true
end,
},
Last edited:

