Index
script¶
- Artisan's Prize
- BoxHUD
- Chase
- Condition Builder
- Event Manager
- Find Item Window
- KissAssist
- Loot N Scoot
- Lua Expression Evaluator
- MAUI
Artisan's Prize¶
- Artisan's Prize is a macro that helps you learn all the recipes needed to evolve Artisan's Prize augment.
BoxHUD¶
- This Lua script provides an alternative to a similar
MQ2HUD/MQ2NetBotsbased HUDs. Instead, it uses observed properties fromMQ2DanNetto watch various bits of information about all your peers. It can also still useMQ2NetBotsproperties as well, though that is less tested.
Chase¶
-
Chases the specified player using MQ2Nav, because who likes that pesky afollow. Not much else to it. It will chase if the chase distance is exceeded and you are not currently:
- Casting (unless you're a bard)
- Auto attack on
- AutoFire on
- Hovering (dead)
- Sticking to something
- Already nav'ing somewhere
Intended for use when running something without an available chase mode, or characters outside of group or some other situation where your only option is typically afollow. Don't try to run this at the same time as something else which does chasing.
Condition Builder¶
- A utility to help generate valid macro if conditions for use in INI files such as KissAssist or MuleAssist conditions.
Event Manager¶
-
Lua Event Manager is intended to provide an alternative to
mq2events,mq2reactand one-off lua scripts being written for events.Rather than events with giant, difficult to read macro if statements, easy to read lua functions can be written to handle events instead.
Rather than reacts with a YAML file that frequently gets corrupted or breaks from indentation mistakes, more complex conditions and actions can be implemented.
Event definitions are global and stored in a shared
lem/settings.luafile. Editing events from multiple characters can overwrite changes if you aren't reloading before making edits on a character.
Event enabled/disabled state is stored per character in a characters ownlem/characters/{name}.luafile. Hopefully this allows to more safely enable or disable events across characters.
Find Item Window¶
-
This lua script recreates the find item window from live EQ for EMU servers where it does not exist.
In addition, it has some very, very simple cross toon search capabilities using MQ2DanNet, which can be used to find and request items from other online toons. It doesn't have the most robust logic for requesting items, and will only attempt one time as long as they are in the same zone and within trading distance of the requesting character.
KissAssist¶
- KissAssist is a MacroQuest script designed to turn any EverQuest character into a personal assistant, like an advanced mercenary. It's a popular choice for multi-boxers due to its universal class handling, flexibility and easy-to-read configuration (.ini) files.
Loot N Scoot¶
- Loot N Scoot (LNS) is a port of NinjAdvLoot.inc for looting on EMU servers. It loots items
from corpses directly, since EMU does not support the advanced looting routines used on
live servers.
LNS can run in standalone mode, alongside your automation scripts, or in directed mode where it is controlled by another script (e.g. RGMercs) via MQ Actors.
Lua Expression Evaluator¶
- A utility to test out lua expressions and view the resulting datatypes of the output, similar to the macro expression evaluator.