Multiboxing.com - Multiboxing in World of Warcraft and more!
          

Go Back   Multiboxing in World of Warcraft and Beyond! > All Gaming Forums > World of Warcraft - Macros, UIs, Mods, Addons

Reply
 
LinkBack Thread Tools Display Modes
Old 07-30-2009, 09:16 AM   #1
Senior Member
 
Saladin's Avatar
 
Join Date: Jul 2009
Posts: 149
Blog Entries: 1
Exclamation Compilation of Macros

This is just a list of some of the macros to keep in touch with. These show the proper or most used macros with modifiers this would be more a intermediate use to advanced. Although should be able to Copy and paste to work the list below will not have the simple ones.. those are my blog are updated first : http://multiboxing.tv/forums/blogs/1...r-advanced-57/. Also you can check on the post in the forums which is normally updated the same time: http://multiboxing.tv/forums/f4/comp...acros-416.html.


Misc
*note: Listed below are misc things not required but used most of the time for macros
Just a simple thing to add to any macro to make it better:
turns off sound then turns back on insert your macro between it and you won't hear anything while it is going
Code:
/console Sound_EnableSFX 0
<Insert macro here>
/console Sound_EnableSFX 1
Simple it clears the Errors on the screen OOM, Not enough energy, skill not ready yet... Yea you know them
Code:
/run UIErrorsFrame:Clear()
Basic Modifiers
*note: these listed that I am posting are not ALL just the ones that multiboxers use most frequently
This is the simplest and the one that is used the most frequent as it is to target the target of the focus which is the main toon you have.
Code:
/cast [target=focustarget] <Insert Spell here>
This is not a modifier in most words but it is used for aspects and such you need to switch. ONLY works with two things to switch between them. The “!” is the key to this whole thing as it says if it is NOT then it will go to it
Code:
/castsequence !Aspect of the Hawk, !Aspect of the Viper
If you have ever tried to make a macro and the thing would not work bc somthing else is casting and you needed that heal or just wanted somthing to happen.. Add this to the macro where needed it will stop it right away won't recast what you had but will stop it
Code:
/stopcasting
A trick to having a group is having macros know when in group... well how about a smart invite macro?
Code:
/invite [nogroup] <Insert Name>
/stopmacro [nogroup]
/focus <Insert name>
simple script to some others a little more advanced but simple as targets the name and then does the spells. If you change target or mob ur attacking then it resets or if the 15 seconds pass
Code:
#showtooltips
/castsequence [target=Iwubpriests]  reset=15,target  Power Word: Shield, Renew, Flash Heal, Flash Heal, Flash Heal, Flash Heal, Flash Heal, Flash Heal, Flash Heal
Accept and Focus Target Macro
*note: spamming will work for most ppl
Accepts of course all the normal things for those whom don't use Jamba but also hide the windows... as this will accept them but won't hide them so the bottom 2 lines of the macro hide them.
Code:
/focus <Insert Character Name Here>
/script AcceptGroup();
/script AcceptQuest();
/script AcceptTrade();
/script RetrieveCorpse();
/script RepopMe();
/script StaticPopup_Hide("PARTY_INVITE");
/script StaticPopup_Hide("QUEST_ACCEPT");
Auto sell greys with Macro
*note: ----Nothing to report other than you will need to have interact with target active (http://multiboxing.tv/forums/f4/inte...useful-31.html)
Now with this you can make your toon or urself sell all greys in your bags. Simple and no addon required to take up memory
Code:
/script for bag = 0, 4 do for slot = 1, GetContainerNumSlots(bag) do local name = GetContainerItemLink(bag,slot) if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name) UseContainerItem(bag,slot) end end end

Smart Mouseover Healing
*note: Still in debate on http://multiboxing.tv/forums/f4/macr...dly-364-2.html But still a useful macro to have
Casts the specified spell on the most appropriate target.
In order of priority: target (friendly), mouseover (friendly), player
Allows you to keep your current target while healing a friendly (mouseover them or their profile) or yourself (do nothing), while still acting like a normal cast (friendly targets have priority).

Code:
#showtooltip
/cast [help,exists][target=mouseover,help,exists][target=player] Lesser Healing Wave
Channeling Spells
*note: Change both to the spell name being channeled
This in affect makes sure that you don't cancel the already channeling spell so you don't OOM within the first few hits
Code:
/cast [nochanneling:Arcane Missiles] Arcane Missiles
Spamable Macro
*note: This works with most skills that have a DOT
This is a basic macro YES but with this you will have to change the reset timer as it is all depends on how long the DOT lasts
W/O target reset:
Code:
/castsequence reset=15 Mend Pet, null
W target reset:
Code:
/castsequence reset=target,15 Serpent Sting, null
Setting your resolutions
*note: ot a macro that you would normally use but it helps either way
Hitting these macros will actually assist you and will allow you to change your screen resolution from high to low just with button press
Code:
/say detail: high
/console farclip 777
/console horizonfarclip 6226
/console groundeffectdensity 256
/console groundeffectdist 140
/console smallcull 0
/console skycloudlod 3
/console characterambient 1
/console detailDoodadAlpha 100
Code:
/say detail: medium
/console groundEffectDensity 136
/console groundEffectDist 70
/console horizonfarclip 3765
/console farclip 477
/console characterAmbient 0.3
/console smallcull 1
/console skycloudlod 2
/console detailDoodadAlpha 1
Code:
/say detail: low
/console groundEffectDensity 16
/console groundEffectDist 1
/console horizonfarclip 1305
/console farclip 177
/console characterAmbient
/console smallcull 1
/console skycloudlod 1
/console detailDoodadAlpha 1
Healer macro to cast target of target heals
*note: I have not used this macro as not high enough but with that said.
This macro is to assist you in healing of course but it allows u to hit the button and depending on what target u have is what person you end up healing
Code:
/cast [target=target,help,nodead,exists][target=focustarget,help,nodead,exists][target=focus,help,nodead,exists] Lesser Heal
Code:
/cast [modifier:alt,target=player] Lesser Healing Wave; [target=target,help][target=targettarget,help][target=player] Lesser Healing Wave

Last edited by Saladin; 08-02-2009 at 11:57 AM. Reason: updated to the blog
Saladin is offline   Reply With Quote
Old 07-30-2009, 09:17 AM   #2
Senior Member
 
Saladin's Avatar
 
Join Date: Jul 2009
Posts: 149
Blog Entries: 1
Default Re: Compilation of Macros

Reserved ......
Saladin is offline   Reply With Quote
Old 07-30-2009, 09:18 AM   #3
Senior Member
 
Saladin's Avatar
 
Join Date: Jul 2009
Posts: 149
Blog Entries: 1
Default Re: Compilation of Macros

Reserved .......
__________________
Multiboxer can defeat huge bosses, but when it comes to stairs, don't count on it.
Saladin is offline   Reply With Quote
Old 07-31-2009, 06:27 AM   #4
Member
 
JoLLeRuS's Avatar
 
Join Date: Jul 2009
Location: Belgium
Posts: 94
Thumbs up Re: Compilation of Macros

Gieve more, It is easier to read about macro's in one big post, go and fetch them all
I will sit back and relax...
Thank you for your effords, I like posts like this
JoLLeRuS is offline   Reply With Quote
Old 08-02-2009, 12:02 PM   #5
Senior Member
 
Saladin's Avatar
 
Join Date: Jul 2009
Posts: 149
Blog Entries: 1
Default Re: Compilation of Macros

updated.. today added some simple macros and added some healer macros... i might add more total macros but want to ask would it be to much or just keep it simple?
__________________
Multiboxer can defeat huge bosses, but when it comes to stairs, don't count on it.
Saladin is offline   Reply With Quote
Old 08-28-2009, 01:25 PM   #6
Senior Member
 
Saladin's Avatar
 
Join Date: Jul 2009
Posts: 149
Blog Entries: 1
Default Re: Compilation of Macros

Now that i am back i am going to reupdate this and then add more that i have found and grab from more sources not just this forum.... so anyways...
__________________
Multiboxer can defeat huge bosses, but when it comes to stairs, don't count on it.
Saladin is offline   Reply With Quote
Old 02-13-2011, 01:43 PM   #7
Senior Member
 
Drarkan's Avatar
 
Join Date: Aug 2009
Location: Vancouver BC
Posts: 503
Default Re: Compilation of Macros

Seems like its been a while since this has been updated. Is Saladin still around?
Drarkan is offline   Reply With Quote
Old 02-13-2011, 02:12 PM   #8
Senior Member
 
Join Date: Nov 2009
Location: Vancouver, Canada.
Posts: 2,421
Default Re: Compilation of Macros

His Last Activity reads 02-07-11, which is recent.
__________________
Google: Ualaa's guide to IS Boxer
Streaming in HD: www.twitch.tv/ualaa
Ualaa is offline   Reply With Quote
Reply

Tags
compilation, macro, macros, wow

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Team Awesome Macro compilation (Updated for 4.0) EaTCarbS World of Warcraft - Macros, UIs, Mods, Addons 131 12-29-2010 01:49 PM
Click Macro Compilation Lostwalker World of Warcraft - Macros, UIs, Mods, Addons 1 05-29-2010 12:07 AM
Tim videos compilation! Kylol Multiboxing Videos 1 10-20-2009 03:42 AM
Stream schedule compilation LindlineOLD General Discussions 6 08-15-2009 07:08 PM
Hunter Compilation Boiling World of Warcraft - Macros, UIs, Mods, Addons 21 08-13-2009 12:16 PM


SEO by vBSEO 3.3.2