- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
6,154 Addons
-
Popular Downloads
- Top World of Warcraft Addons
- Top Minecraft Bukkit Plugins
- Top Rift Addons
- Top Skyrim Mods
- Top World of Tanks Skins
- Top Terraria Maps
- Top StarCraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top The Secret World Mods
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
- Store
MacroForm
- 2 Likes
- World of Warcraft
- 1,266 Monthly Downloads
- Supports: 5.3.0
- 34,871 Total Downloads
- Updated 06/13/2013
- Created 11/10/2008
- 117 Favorites
- Project Site
- Comments
- Release Type: Release
- License: GNU Lesser General Public License version 3 (LGPLv3)
- Newest File: v4.3.0.0
About MacroForm
This addon helps the user write conditional macros using only the mouse.
Not all available conditions have been implemented but the ones that are used the most are.
No more spelling errors when creating macros.
Usage:
type "/mf" to bring up the UI.
Drag a spell/ability from the spellbook to the spell button in the main frame.
Select the conditions that you want to use.
Press add.
Select a new set of conditions (and a new spell if needed).
Press add again.
Repeat until the macro is complete.
Copy and paste into the normal macro window.
For castsequence hit the Sequence button at the top (OneLine to go back).
Set the conditions and reset conditions for your macro.
Drag in a spell from you spell book to the spell button.
Press add.
Drag in a new spell.
Press add and so on until you're done.
Copy the script from the bottom of the window and paste it in to the macro.
Colours will show the role that a specific part of the macro plays - command,
ability, condition and so on. Red indicates that something is wrong and that the
macro most likely will not work.
------------------------------------------------------------------------
r39 | zaman | 2013-06-13 20:55:36 +0000 (Thu, 13 Jun 2013) | 1 line
Changed paths:
A /tags/v4.3.0.0 (from /trunk:38)
Tagging as v4.3.0.0
------------------------------------------------------------------------
r38 | zaman | 2013-06-13 20:55:01 +0000 (Thu, 13 Jun 2013) | 2 lines
Changed paths:
M /trunk/MacroForm.lua
M /trunk/MacroForm.toc
M /trunk/MacroForm.xml
v4.3.0.0
Changed selection of channeling spells to dropdown so you can choose channeling or nochanneling
------------------------------------------------------------------------
r36 | zaman | 2013-05-30 22:02:41 +0000 (Thu, 30 May 2013) | 2 lines
Changed paths:
M /trunk/MacroForm.toc
v4.2.0.2
Version update
------------------------------------------------------------------------
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| v4.3.0.0 | Release | 5.3.0 | 499 | 06/13/2013 |
| v4.2.0.2 | Release | 5.3.0 | 674 | 05/30/2013 |
| v4.2.0.1 | Release | 5.2.0 | 1,161 | 03/09/2013 |
| v4.2.0.0 | Release | 5.1.0 | 1,660 | 12/07/2012 |
| v4.1.3.2 | Release | 5.1.0 | 716 | 12/01/2012 |
| v4.1.3.1 | Release | 5.0.5 | 1,659 | 09/21/2012 |
| v4.1.2.1 | Release | 4.3.3 | 2,298 | 04/12/2012 |
| v4.1.2.0 | Release | 4.2 | 4,708 | 06/29/2011 |
| v4.1.1.0 | Release | 4.1 | 2,012 | 05/08/2011 |
| v4.1.0.0 | Release | 4.0.3a | 5,000 | 11/25/2010 |
| v4.0.0.0 | Release | 4.0.1 | 2,033 | 10/16/2010 |
| v3.3.0.3 | Release | 3.3.5 | 1,749 | 09/19/2010 |
| v3.3.0.2 | Release | 3.3.0 | 3,118 | 12/13/2009 |
| v3.3.0.1 | Release | 3.3.0 | 195 | 12/13/2009 |
| v3.3.0.0 | Release | 3.3.0 | 5 | 12/09/2009 |
| v3.1.0.0 | Release | 3.1.0 | 40 | 04/15/2009 |
| v0.3 | Release | 3.0.3 | 13 | 11/11/2008 |
Addon Packs Containing This...
Top Downloads
-
- Deadly Boss Mods
- Combat, PvP, and Boss Encounters
- 1,586,655 Monthly Downloads
-
- Recount
- Combat
- 1,080,253 Monthly Downloads
-
- AtlasLoot Enhanced
- Map & Minimap, Professions, Arena, and Boss Encounters
- 692,050 Monthly Downloads
-
- Deadly Boss Mods - Burning Crusade and Vanilla mods
- Combat and Boss Encounters
- 550,804 Monthly Downloads
-
- Tidy Plates
- Artwork, Combat, Tank, and Unit Frames
- 466,118 Monthly Downloads


Comments
v 4.3.0.0 gives you more options on the channeling (basically channeling / nochanneling or don't bother)
Just typing "/mf" should still work.
Macros are read from left to right and top to bottom. This means that in your case it reaches the first spell (Seal of Wisdom) and since the condition is met (empty condition) it will fire the spell and then break off and go to the next line.
To get them to fire separately you have to set a separate condition for each spell so that you have a way of choosing which spell should be fired.
For example: Start with an empty macro/frame.
Drag Seal of Wisdom to the addon and check modifier "Alt" before pressing add.
Drag Greater Blessing of Kings to the addon, unchek "Alt", check "Ctrl" and press add.
Drag Righteous Fury to the addon, uncheck everything and press add.
This would create a macro looking like this:
/cast [mod:alt] Seal of Wisdom; [mod:ctrl] Greater Blessing of Kings; [] Righteous Fury
To cast SoW you hold down Alt, to cast GBoW you hold down ctrl and anything else will cast Righteous Fury.
If you want to create a macro that casts them all after each other you'd have to make a /castsequence macro and they work a bit differently.
Due to GCD you can't create a macro that casts more than one spell per click. The real reason is that Blizz doesn't want people to write addons/macros that lets you click one button, go to sleep and wake up with a dead boss :)
Hope this helps and who knows, some day I might even implement the castsequence macro into the addon as well (I do get quite a few questions on how to write them) and at that time I'd probably also clean up the old functionality a bit.
The rest of the information is in the addon description.
You can also try to bind a key to bring up the UI (among the usual key bindings).
Binding a key works though - many thanks :)