• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Dismounting

Berkz

Well-known member
Joined
Jun 2, 2022
RedCents
373¢
I am trying to summon a mount just for the buff. It should be easy, but I can't get it to work. I've seen other .ini that have Summon <name of mount>|remove So I tried that unsuccessfully. I also put a command: /dismount right after summoning the mount in the BUFFS section. The only thing that worked is to put the /dismount command in the DPS section but then it just puts me in a loop of summoning and dismounting.
 
Buffs17=Winter Jackalope Saddle|Dual|Mount Blessing Lena
update to whatever mount you have.
;Buffs18=Summon Winter Jackalope|Remove

if your using kissassist
 
Here is the LEM I use for summoning my familiar and then killing it. You can swap out the spells for what you need.
It first checks if you are safe to cast and don't already have the buff. You can just leave this on.

Lua:
local mq = require('mq')

---@return boolean @Returns true if the action should fire, otherwise false.
local function on_load()
end

local function condition()
    return not mq.TLO.Me.Stunned()
    and not mq.TLO.Me.Dead()
    and not mq.TLO.Me.Feigning()
    and not mq.TLO.Me.Ducking()
    and not mq.TLO.Me.Silenced()
    and not mq.TLO.Me.Charmed()
    and not mq.TLO.Me.Mezzed()
    and not mq.TLO.Me.Invulnerable()
    and not mq.TLO.Me.Casting()
    and not mq.TLO.Me.Moving()
    and mq.TLO.SpawnCount('npc radius 60')() < 1
    and mq.TLO.Me.XTarget() < 1
    and mq.TLO.Me.Buff('Familiar').ID() == nil
    and mq.TLO.Me.ItemReady('Fungal Underbulk')()
end

local function action()
    mq.cmd('/useitem Fungal Underbulk')
    print('Casting Familiar...')
    mq.delay(5500)
    mq.cmd('/removebuff Summon Familiar')
end

return {onload=on_load, condfunc=condition, actionfunc=action}
 
Question - Dismounting

Users who are viewing this thread

Back
Top
Cart