Jun 19 2019 by EqMule
- Updated for LIVE
- Added ${Macro.CurSub} returns the name of the current Sub being executed. -cred alynel
- Added ${SubDefined[blah]} it returns a bool if a Macro Sub is defined. -cred alynel
- Previously Added: .CachedBuff[x] to the spawn tlo where x is a spellid if its a number and a spell name if not. It returns a MQ2CachedBuffType.
- Previously Added: .CachedBuff[#x] to the spawn tlo where #x is a buffslot between 1-97. It returns a MQ2CachedBuffType.
- Previously Added: .CachedBuff[*x] to the spawn tlo where *x is a index (buffslots are not sorted). It returns a MQ2CachedBuffType.
- Previously Added: .CachedBuff[^x] to the spawn tlo where ^x is a keyword. It returns a MQ2CachedBuffType.
^x keywords: Slowed Rooted Mezzed Crippled Maloed Tashed Snared and Beneficial
-
- MQ2CachedBuffType has the following members:
.CasterName .Count .Slot .SpellID .Duration
-
- Previously Added: .CachedBuffCount to the spawn tlo. it returns -1 if no buffs are cached for the spawn or number of buffs cached.
- Using CachedBuff to get buff info on targets, group members etc, only requires you to target the entity once. after thats done, buffs are cached.
- The upside is obviously that we don't have to target back and forth constantly.
- Usage: well lets say you are a druid and you want to know if a group members sow buff has worn off, you can just check CachedBuff without having to retarget the group member.
- /echo ${Group.Member[2].CachedBuff[Spirit of Wolf].Duration}
Jun 14 2019 by RedGuides
- MQ2Cast, MQ2Melee, MQ2Medley, MQ2SpellHotKeys, MQ2Twist (pjfry, ChatWithThisName) handle spell fizzle and interrupt messages with links.
- MQ2Melee (alynel, kaen01) Removed keybind settings so customizations in macroquest.ini aren't overwritten
- MQ2EQBC, EQBCS (jimbob) added silent commands Maskoi requested (/bcsa, /bcsaa, /bcsg, /bcsga, /bcst).
- MQ2DanNet (dannuic) fixed zoning losing custom groups, major reworking of observers to be way more efficient
-
Jun 14 2019 by EqMule
- Updated for TEST
-