Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Commits
(ed2755c) ~KnightlyUpdate for v143
- Addresses https://github.com/macroquest/macroquest/issues/635
(86c49be) ~KnightlyMerge branch 'v143' into 'master'
Update for v143
See merge request redguides/plugins/mq2aaspend!2
Merc AA is now supported similarly to how regular AA spending works. It can use INI driven list or "Brute force" mode. Brute mode has a priority system that allows you to specify merc types, with the option to prioritize the type of your active merc.
For example, if you have a tank merc active, and you run the following command:
/aaspend mercorder 241
and then:
/aaspend mercorder auto on
Then it will prioritize spending tank aa, then melee, then general, then everything else. If you dismiss that merc, then it will do melee, then tank, then general, etc.
Adds support for the following commands that behave like regular aa commands:
/aaspend mercadd "AA Name"
/aaspend mercdel "AA Name"
/aaspend mercbuy "AA Name"
/aaspend mercbrute on|off|now
/aaspend mercorder #####
- Sets order for brute force. Works like the order command:
general=1, tank=2, healer=3, melee=4, caster=5
/aaspend mercorder auto on|off
- When you have an active mercenary, this will prioritize that type of mercenary over what you have in the order list.
/aaspend mercauto on|off
reads ini entries and spends according to the rules provided there. works like regular AA, with mercadd/mercdel adding/removing entries
- Cleanup
- Don't spam message if brute force is enabled
- Fix checking the wrong spell for purchase (resolves issue with activated AAs among other things)
- Updated MQ2AASpend to automatically adjust with Autogrant for Bonus purposes.
- my auto-space cleanup removed an extra space.
MQ2AASpend - Bonus update for CoV (!391) · Merge Requests · RG Creators / VeryVanilla
Updated MQ2AASpend to automatically adjust with Autogrant for Bonus purposes. -- This does require an update in mq2main to #define EXPANSION_COV EQ_EXPANSION(27) and #define NUM_EXPANSIONS 27...gitlab.com
knightly:
- Remove using namespace std
- Remove need for pragma disable
- Move pulse variables into OnPulse callback
- Change initial load chat output to be minimal
- Remove some of the unused variables
- Move global command buffer to locals
- Individual functions now either have space or tab indent, but not both
- Replace NULL
- Consolidate command function to need less returns
- Remove some of the else after returns
MQ2AASpend - Minor Cleanup (!304) · Merge Requests · RG Creators / VeryVanilla
- Remove using namespace std - Remove need for pragma disable - Move pulse variables into OnPulse callback - Change initial load chat output to be minimal - Remove some...gitlab.com
Update for players that are at cap AA's and use a Glyph, but AASpend doesn't get a message that they gained or spent and AA and therefore doesn't trigger. AASpend will now look for the "You have reached the AA Point cap" string to trigger it as well, reducing wasted AA EXP. - @ChatWithThisName