OK i couldnt seem to find where it was so I did a local search. it found it. went to the folder and was 0Kb. so I coppied over the .lua. (14Kb) when I got in the zone BEFORE I started it just to see if it was any different. It started but got a Zfix error, which I read that it would still work fine. After they were just standing around getting beat on i ran the /lua run ls and it said that it was already running while they just stood there. So I started my KA. they went to work, Just stood in the aura taking damage didnt switch to any adds that may have popped. Do I need to have some things turned on. MQCast, melee twist etc? Do I do a normal start /mac kissassist then start the lua before or after starting the mission? Or Leave KA off and the scrpit will take over and activate them?
Here's what the script is doing:
elseif mq.TLO.SpawnCount('huge')() > 0 and not mq.TLO.Spawn('huge').Dead() then
if mq.TLO.Spawn('huge').Distance() > 20 then
mq.cmd('/nav spawn huge | distance=20')
mq.cmd('/tar huge')
while mq.TLO.Navigation.Active() == true do mq.delay(300) end
if string.find('SHM CLR DRU', mq.TLO.Me.Class.ShortName()) == nil then
mq.cmd('/attack on')
If it sees the huge slime, and you're not a shaman, cleric, or druid, navigate to the slime, target the slime, and turn attack on. You should be running some kind of automation (such as kissassist, CWTN, afnuke, afheals, etc.) that does "stuff" like healing, spell casting, etc.
When the slime is dead is goes for the Queen:
elseif mq.TLO.SpawnCount('queen')() > 0 and
not mq.TLO.Spawn('queen').Dead() and
mq.TLO.Target.ID() == 0
then
if string.find('SHM CLR DRU', mq.TLO.Me.Class.ShortName()) == nil then
mq.cmd('/nav spawn queen | distance=30')
mq.cmd('/tar queen')
while mq.TLO.Navigation.Active() == true do mq.delay(300) end
if string.find('SHM CLR DRU', mq.TLO.Me.Class.ShortName()) == nil then
mq.cmd('/attack on')
Again, all its doing is turning attack on for everyone but priests, so you need some other type of automation to handle your casting. There's a whole lot more to it but that should give you the basic idea of how it works.
- Take your group to slime spawn point, and turn on your automation, preferably in a chase mode but a camp mode with a huge camp radius works too.
- /Lua run ls on every character (/dgga /Lua run ls)
- Pause your priest and run to Elmara and trigger. Unpause your priest and assuming you're running an automation using chase mode the priest will run back down automatically.
- Tab back to your tank and if it isn't already attacking the slime, help it. Can also call your team to assist if you don't want to wait on things.