• 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 - Table flipper mac

Middleman850

Member
Joined
Aug 4, 2020
RedCents
80¢
So I’m not great at this macro stuff still learning a lot. I wanted to make a macro to cast a spell on my mage every 40seconds to help with table flipper, how would I do that?
 
first thing to do - see if there are similar macro's and "steal with pride"

I can think of some that cast one spell over and over: mass enchant

or maybe you can just use a plugin called mq2twist

/twist 1
 
I think i have create somethig for this. I use a wizard i leave her in a circle of mushroom in underfoot and she chain cast an AE spell.
In undershore at NPC called Freemind Cipher for exemple.
Code:
|
| What this macro do ?
|
| Mem spell Wheel of Flame in slot 1 (Wizard spell level 107)
| wait 7 seconds for load the spell
| Cast Wheel of flame
| Recast every 2,38 seconds
| Hide corpse after cast for all chars in group
|
|    Use /bcaa instead /bcga for hide corpse for all char connected to EQBC server
|    and not only member of the group.

Sub Main
/memspell 1 "Wheel of Flame"
/delay 7s

|Sub Main
:Main

  /casting "Wheel of Flame"
  /delay 2s
  /bcga //hidecorpse all
  /delay 38s

/goto :Main
You probably edit the macro, change the spell name by an PB AE spell change too the 2 "/Delay timer" to fit with the mage spell casting time.
 
Last edited:
this will work for 120 mage as well - just modified the above

Sub Main

/memspell 1 "beam of molten olivine"
/delay 7s

|Sub Main
:Main

/cast 1
/delay 40s

/goto :Main
 
Lua:
local mq = require('mq')

-- Do not edit this if condition
if not package.loaded['lem.events'] then
    print('This script is intended to be imported to Lua Event Manager (LEM). Try "-t/lua run lem-t"')
end

local function on_load()
    -- Perform any initial setup here when the event is loaded.
end

---@return boolean @Returns true if the action should fire, otherwise false.
local function condition()
    return mq.TLO.SpawnCount('a budding mindspore')() > 0
end

local function action()
    mq.cmd('/tar a_budding_mindspore')
    mq.cmd('/stick')
    mq.cmd('/open')
end

return {onload=on_load, condfunc=condition, actionfunc=action}

this was the lazy LEM i wrote for table flipper for use in undershore last year-ish. Someone could do something fancier but if you go to the spot you'll get it soon enough.
 
The shrooms counted only 1 time when i tried to do table flipper today - when i opened them again after respawn they didnt count another time. Was it nerfed? Where else can one do table flipper now?
 
The shrooms counted only 1 time when i tried to do table flipper today - when i opened them again after respawn they didnt count another time. Was it nerfed? Where else can one do table flipper now?
you could of been bugged, /camp and come back in.
 
I think i have create somethig for this. I use a wizard i leave her in a circle of mushroom in underfoot and she chain cast an AE spell.
In undershore at NPC called Freemind Cipher for exemple.
Code:
|
| What this macro do ?
|
| Mem spell Wheel of Flame in slot 1 (Wizard spell level 107)
| wait 7 seconds for load the spell
| Cast Wheel of flame
| Recast every 2,38 seconds
| Hide corpse after cast for all chars in group
|
|    Use /bcaa instead /bcga for hide corpse for all char connected to EQBC server
|    and not only member of the group.

Sub Main
/memspell 1 "Wheel of Flame"
/delay 7s

|Sub Main
:Main

  /casting "Wheel of Flame"
  /delay 2s
  /bcga //hidecorpse all
  /delay 38s

/goto :Main
You probably edit the macro, change the spell name by an PB AE spell change too the 2 "/Delay timer" to fit with the mage spell casting time.
How would I insert or make this happen? I use CWTNs and no idea how to start this.
 
The shrooms counted only 1 time when i tried to do table flipper today - when i opened them again after respawn they didnt count another time. Was it nerfed? Where else can one do table flipper now?
you can also do the vases at the huts at the above ground alarian settlement in shards landing
 
this is an old thread, but i actually did this achievment on a tlp server with a melee toon before truebox relexed and the mq here would work on it. i made a button in game that i mapped to a button and ran an auto key presser.
so for settup for my melee guy i ran the key presser to summon a ton of thrown items, sishar things, frozen tears, or starfish something like that at the time. once i had nearly filled my bags i swapped the hotkey for a social key that would target spider egg sacs in Nektulos Forest then /autofire
 
Question - Table flipper mac

Users who are viewing this thread

Back
Top
Cart