yangwenlii
Active member
- Joined
- Oct 31, 2020
- RedCents
- 271¢
- Version of KissAssist.mac?
- 12.002
- When did your problem start?
- December 2020
- Character Role?
- Assist
- What class is having this issue?
- Magician
- How often does this issue occur?
- Sometimes
- Can you reproduce the issue?
- Can't figure out how to reproduce it intentionally
I recently wrote a simple Lua to automatically use /trackmedown 1 1 1 for my casters since I like to keep my group tight in small spaces and avoid line of sight issues. I periodically run into an issue where all of my caster spells will chain interrupt, and it doesn't correct itself until switching to the next target or disabling the Lua.
Rather than an issue with Kissassist itself, I think this is an issue with my Lua's interaction with kissassist. But I also had the same issue occur using a similar condition in MQ2react and some input would be greatly appreciated.
For reference, this is my Lua:
This is the react I previously used that caused the same issue:
Rather than an issue with Kissassist itself, I think this is an issue with my Lua's interaction with kissassist. But I also had the same issue occur using a similar condition in MQ2react and some input would be greatly appreciated.
For reference, this is my Lua:
Lua:
local mq = require('mq')
while true
do
if mq.TLO.Me.XTarget() > 0 and mq.TLO.Group.Member('CharName').Distance () >= 20 and mq.TLO.Navigation.Active() == false then
mq.cmd("/trackmedown 1 1 1")
end
mq.delay(10)
end
This is the react I previously used that caused the same issue:
YAML:
Closer:
action: /timed 50 /trackmedown 1 1 1
condition: >-
${Target.Type.Equal[NPC]} && ${Me.XTarget}>0 && !${Spawn[pc radius
20 CharName].ID} && ${Macro[kissassist.mac].Name.Length} && !${Navigation.Active}

