Главная | Регистрация | Вход Приветствую Вас Гость | RSS

Скачать фильмы, смотреть онлайн-фильмы. Софт, игры, музыка и многое другое!

Меню сайта
Разделы новостей
СКАЧАТЬ БОТ ДЛЯ World Of WarCraft [11]
СКАЧАТЬ АДДОН World Of WarCraft [158]
СКАЧАТЬ ПАТЧ ДЛЯ World Of WarCraft [19]
МАКРОСЫ ДЛЯ World Of WarCraft [5]
СКАЧАТЬ ЧИТ ДЛЯ World Of WarCraft [60]
Новости в мире WarCraft [23]
Мини-чат
Наш опрос
Стоит ли добавить на наш сайт разделы с файлами для других игр???
Всего ответов: 1216
Главная » 2008 » Октябрь » 21 » Macros (ЧАСТЬ 1) ДЛЯ World Of WarCraft
Macros (ЧАСТЬ 1) ДЛЯ World Of WarCraft
19:01
General

Raid Icon
This macro will set a raid icon on your target. this is vary usefull for tanks and raid leaders. You will only need to change
the number putting the number of the icon you want.
1 - Star
2 - Circle
3 - Diamond
4 - Triangle
5 - Moon
6 - Square
7 - Cross
8 - Skull
The code for this macro is:
/script SetRaidTargetIcon("target", 8)

Flying or running
This is a simple macro that use your flying mount when in outlands and your normal one when in azeroth =D it also show the proper icon and tooltip for the current usable mount if u use the question mark (?) icon on your macro =D now when u click with your right mouse button on this macro it will use your land mount.
The code for this macro is:
#showtooltip
#showicon
/use [flyable,nobutton:2]Green Riding Nether Ray; [noflyable]Reins of the Swift Stormsaber


Crafting
This macro opens all your crafting skills on one button (cooking,first aid,alchemy,blacksmithing etc.)
left click to open primary crafting skills,right click for cooking,and shift click for first aid.
*note if you have 2 primary crafting skills both will open on left click if you do not have cooking your primary skills will open on right click.
The code for this macro is:
/cast Alchemy
/cast Engineering
/cast enchanting
/cast jewelcrafting
/cast tailoring
/cast leatherworking
/cast blacksmithing
/cast [button:2] Cooking
/cast [modifier:shift] First Aid


DeepDive Helm Swapper
I used to have outfitter which had the option to change to a swimming outfit, but I don't have it anymore so I had to come up with a macro for swapping gear depending if I was swimming or not. Just replace the Stalker's Helmet of Second Sight with your helm. Also could be used to change the belt. I believe it is the Azure Silk Belt, which give 15% swim speed. That would most likely have to be a separate macro because it wold be too long for one.
The code for this macro is:
/equip [swimming] Deepdive Helmet; Stalker's Helmet of Second Sight

Flexible Misdirect Macro
My macro will cast MD on one of the three in the following order:
1) your current target if friendly
2) your current focus if friendly
3) your pet if he is out and alive
I use this together with my targeting macro (see other post) where I typically have the main tank set as my focus. That way I will always MD onto the MT (if I've set focus). The flexibility allows me to actually target another player and cast MD on them without changing focus).
The code for this macro is:
/cast [help] Misdirection; [target=focus, help] Misdirection; [target=pet, exists] Misdirection

Announce Time Left on Polymorph
Announces target name and timeleft (in seconds) for your Polymorph spellcast on your focus target, in EMOTE. (If you want to check time left on buffs just use UnitBuff instead of UnitDebuff, but be warned, the times are still in seconds.)
The code for this macro is:
/run for i=1,40 do local n,_,_,_,_,_,t=UnitDebuff("focus",i);if (n=="Polymorph") or (n=="Polymorph: Pig") or (n=="Polymorph: Turtle") then SendChatMessage("**"..t.."** seconds left on "..UnitName("focus").."'s Polymorph!","EMOTE");end end Rogue Big hits
This is a macro i found out to where you throw like 25 knives at once.Put in the code below till it is full.
The code for this macro is:
/cast throw
/stopcasting throw
/cast throw
/stopcasting throw


Open one page of CTMail at a time
This macro is for CTMail users who are sick and tired of clicking each and every checkbox on a page in the mailbox. This
macro activates all checkboxes on the current page. If you also include the last line in the macro, it will open all selected
mail messages as well.
The code for this macro is:
/click CT_MailBoxItem1CB
/click CT_MailBoxItem2CB
/click CT_MailBoxItem3CB
/click CT_MailBoxItem4CB
/click CT_MailBoxItem5CB
/click CT_MailBoxItem6CB
/click CT_MailBoxItem7CB
/click CT_MMInboxOpenSelected


Raid combat auto target for ranged attackers
This macro is another simple macro that for those that don't know easy macroing will come in handy. Have you ever been to gruul's where you have to witch between three of the five guys running around or have to kill those dang dogs. Well this
macro is simple to be able to target anything you put in view without having to have to try and find it to click it.
The code for this macro is:
/target targetsname
Stones and summons
Stones and summons tied to modifier keys
The code for this macro is:
#showtooltip
/cast [nomodifier] Create Firestone
/cast [modifier:lalt] Create Healthstone
/cast [modifier:lshift] Create Soulstone
/cast [modifier:lctrl] Create Spellstone
#showtooltip
/cast [nomodifier] Summon Imp(Summon)
/cast [modifier:lalt] Summon Voidwalker(Summon)
/cast [modifier:lshift] Summon Succubus(Summon)
/cast [modifier:lctrl] Summon Felhunter(Summon)


Combat

Can be helpful if you need to change weapons in a hurry, but once again, mainly for people who are too lazy to do it by
opening bags and clicking on the items. Mods are available for this sort of thing, but I prefer macros (I'm a mod inimalist).
Obviously, you have to change it a bit. Replace the bit with the name of your 1H/2H weapon. Shift clicking on the weapon helps.
With the offhand weapon, you may need to replace /equip on the second line with /equipslot 17 (I've only tried using shields, as I am a pally and cannot dual wield). Also, the 17 may have to go after the []s.
The code for this macro is:
/equip [equipped:Two-Hand] ;
/equip [equipped:Two-Hand] ;


Trinket Victory
This will help save room on your action bar! This macro will show any trinket that you have equipped in your first trinket slot with the tooltip AND allow you to use it. For the second trinket slot simply change the slot number from 13 to 14.
**IMPORTANT** You MUST use the ? Icon for this macro to work properly!
The code for this macro is:
#showtooltipslot 13
/use 13


Shoot Any Ranged
Updated from my previous one, since Blizzard in their infinite wisdom have changed things yet again.
Shoots any ranged weapon. Including the Thrown.
Does an Emote message If there are no Ranged weapons equipped. Can change to a /Say if you want.
for Example:
/say Hey, Anyone seen my Ranged weapons? I seem to have lost them.
Or use SpeakEasyHelper for raandom messages.
The Choice, as they say, is yours. :)
The code for this macro is:
#showtooltip
/cast [equipped:Thrown] Throw; Shoot
/stopmacro [equipped:Guns/Crossbows/Bows/Thrown/Wands]
/em looks around for the Ranged Weapons.


Flexible Targeting Macro
I use focus a lot in instances and raids to help me with various tasks. Typically I have my MT or Main Assist in focus but other times I might put focus on a specific target I know I have to chain trap. Thus this targeting macro will target, in order:
1) my focus if unfriendly
2) the target of my focus (if that target is unfriendly)
3) my pets target
The code for this macro is:
/target [target=focustarget, harm]; [target=focus, harm]; [target=pettarget, exists]

Heal
You can use this in a fight that if your potions are used up and healing can't come fast enough in a tight spot.
Make sure you use a trinket that will absorb a damage.
All the while you wont lose the last target.
For warriors i suggest using Intimidating Shout before using, since if hit, the bandage process may get canceled.
The code for this macro is:
/target
/Use
/Use
/targetlasttarget


Pulling shooting macro for all.
Pull for all classes but hunters and pallys.
Can add Exorcism if wanted and hunters take yer pick.
The code for this macro is:
#showtooltip
/cast [equipped:Thrown] Throw
/cast [equipped:Gun/ Wand/ Bow/ Crossbow] Shoot
/cast [stance:1/3] Faerie Fire (Feral)(); [nostance] Faerie Fire


Imp.Stormstrike
This is one button that acitvated one of the trinket if the other is on CD And then casts Stormstrike the next action will be Earth Shock. And then the sequance resets. So you will be always using one of the trinckets (if one on CD it will activate the second) And then StormStrike followed by Earth Shock to land on the SS Debuff.
The code for this macro is:
#showtooltip Stormstrike
/cast [combat] Bladefist's Breadth
/stopcasting
/use [combat] Uniting Charm
/stopcasting
/castsequence reset=5/alt/combat Stormstrike, Earth Shock
/cast Uniting Charmb
/stopcasting


Trinket spell
This macro will activate your trinkets and cast a spell.
Good if you have 1 trinkets that will boost your spell/attack power.
If you only have 1 trinket remove one of the rows that say
/use trinketname
Replace "trinketname" with your trinkets name
Replace "spellname" with the name of the spell that you want to cast.
The code for this macro is:
/use trinketname
/use trinketname
/cast spellname


Prof

Change tracking
I like to fish and mine at the same time..... but hate to not get mines when I am fishing and vice versa...I am also to lazy to click on the mini map to change...Very simple but effective
The code for this macro is:
/castsequence Find Minerals, Find Fish

Druid[/b]

Rebirth from Tank
Natures Swiftness insta-casts do not work while moving (calling it a bug myself)
However this Macro casts Rebirth on left click and if you have a Focus...rebirth instantly from any form on your Focus.
Came up with this mainly from healers in Seth Halls that don't listen. Need to keep tanking and they die to blast.
This code is pretty simple. Can be modded for more specific targeting, however works fine...as long as you don't move.
All my appropriate nature spells are right click insta cast macros now.
The code for this macro is:
[b]#showtooltip Rebirth
/stopcasting
/cast [button:2] Nature's Swiftness
/cast [target=focus]Rebirth


Ultimate druid move-it macro
Long version: If you're standing still in Outlands without holding anything, it will try to use your flying mount. If you are in Azeroth, it will use your ground mount. Holding shift or alt forces use of the ground mount. If you're swimming, you will shift to seal form. If you're in Outlands and out of combat while moving, you'll shift into flight form, in combat or in Azeroth and moving gets you travel form. Holding ctrl dismounts/unshifts. Note that the forms are not 'sticky', and using the macro again will re-shift you. Useful if you get snared, a potential waste of mana otherwise.
The code for this macro is:
/cancelform [form:1/3][form:4,nocombat,flyable][mod]
/stopcasting
/use [flyable,nomod]item:32857;[nomod:ctrl]item:33977
/dismount
/stopmacro [mod]
/cast [swimming]Aquatic Form;[flyable,nocombat]Flight Form;Travel Form


Mouse over Swipe (or anything)
Intended for mass lesser mob destruction. I find it idea when tanking an Uber mob with minions. Idea came from Stockades (find it the ideal place for testing macros).
Start attack keeps attack up even if my target dies, my rage is below 15 (can't swipe) and I am spamming the hotkey.
Enrage casts whenever it is up, and stopcasting for standard macro smoothing. I find I never DON'T want Enrage used. So I put those two lines in most of my bear attacks
Finally, the last line will swipe at your target as per normal, unless your mouse is over another legal target when activated. This way you can keep on your current target, and swipe at any trash that you either need to grab attention of, or low HP high damage trash that needs AOEd. Also have a Lacerate of near identical design. Nice for adding chunks of aggro when tanking multiples.
The code for this macro is:
#showtooltip Swipe
/startattack
/cast Enrage
/stopcasting
/cast [target=mouseover, exists, harm, nodead] Swipe; Swipe;


button for speedy movement (form changer)
I found it cumbersome to use the built in form bar for movement forms, and built a macro for this so I only need one button to do it all.
When pressed...
- in water you will change into Swim Form
- in Outland and no modifier key pressed (shift/alt/ctrl) it will change you into Flight Form (or edit it for Swift Flight
Form if you got that).
- if in Outland IN Flight Form it will not transform you into Travel Form without you using modifier key
- in Outland with modifier key pressed (shift/alt/ctrl) OR NOT in Outland it will use Travel Form.
Might be able to shorten it a bit later on, and maybe add tooltips for every contingency, but maybe later.. ;)
The code for this macro is:
#showtooltip Flight Form
/cancelform [stance:1/3/4/5],[stance:6,modifier]
/stopcasting
/cast [swimming,nostance] Aquatic Form;[flyable,nomodifier] Flight Form; [flyable,modifier] Travel Form; [noflyable] Travel Form


Resurrection Annoucer
This macro simply tells your party and everyone around you who are you resurrecting =D macros like this make ressurecting in raid more efficient =D
(Use the question mark icon [?] so the icon keep showing the number of reagents =D)
The code for this macro is:
#showicon
#showtooltip
/cast Rebirth
Resurrecting %t
/me is resurrecting %t don't act like leeroy in the next 30mins


Pounce/Cower
You cast highest rank of Pounce or Cower depending on whether you're stealth or not and it shows the coresponding tooltip for each spell.
The code for this macro is:
#showtooltip
/cast [stealth] Pounce; [nostealth] Cower


Cast Faerie Fire or Faerie Fire (Feral) depending on stance
You cast highest rank of Faerie Fire or Faerie Fire (Feral) depending on stance. If you are in cat, bear or dire bear form it
casts Faerie fire (Feral) and if you are in human form it casts Faerie fire and it shows the coresponding tooltip for each spell. If you hold out SHIFT it will show the glowy-hand enabling you to cast it on any mob, not needing for you to select it.
The code for this macro is:
#showtooltip
/cast [modifier:shift, target=none, stance:1/3] Faerie Fire (Feral)(); [stance:1/3] Faerie Fire (Feral)(); [modifier:shift,
target=none, nostance] Faerie Fire; [nostance] Faerie Fire


Cat-spam macro for initial attack
This macro allows you to perform the common initial attack sequence from behind a mob while prowling: Pounce, Faerie Fire, Mangle, Shred. Just keep spamming it until the mob turns around to face you.
In practice, the best you can probably hope for is to cast two Shreds before you have to switch to another button. I've added the extra Shreds mostly so it can be used a bit longer when grouped with a tank that holds aggro. Insert or remove as many Shreds as you find reasonable. Note that due to a bug in Blizzard's macro implementation, it is necessary to specify the exact rank for spell names that contain parentheses. This bug should be fixed in patch 2.2.
The code for this macro is:
#showtooltip
/castsequence [stealth]Pounce;reset=combat Faerie Fire (Feral)(Rank 5),Mangle (Cat)(Rank 3),Shred,Shred,Shred,Shred,Shred,Shred


exsit form heal enter bear form
first line exsit form and the secund line cast rejuvenation and healing tuch before you etter back to bear form
The code for this macro is:
/cancelform [stance]
/castsequence Rejuvenation, Healing Touch, Bear Form(Shapeshift)


Druid Healing Macros
Just posting to share my Druid Healing Macros :)
If Targets is Friendly Heal,
else if Target is Harmfull Heal TargetsTarget.
else if no target Heal Self.
(Very handy macros)
The code for this macro is:
Regrowth & Rejuvenation
#showtooltip Regrowth
#show Regrowth
/cancelform
/castsequence [help] reset=12/target Regrowth,Rejuvenation; [target=targettarget,help] reset=12/target Regrowth,Rejuvenation; [target=player] reset=12/target Regrowth,Rejuvenation
Rejuvenation
#showtooltip Rejuvenation
#show Rejuvenation
/cancelform
/cast [help] Rejuvenation; [target=targettarget,help] Rejuvenation; [target=player] Rejuvenation
Healing Touch
#showtooltip Healing Touch
#show Healing Touch
/cancelform
/cast [help] Healing Touch; [target=targettarget,help] Healing Touch; [target=player] Healing Touch
Lifebloom
#showtooltip Lifebloom
#show Lifebloom
/cancelform
/cast [help] Lifebloom; [target=targettarget,help] Lifebloom; [target=player] Lifebloom
Rejuvenation & Swiftmend
#showtooltip Swiftmend
#show Swiftmend
/cancelform
/castsequence [help] reset=12/target Rejuvenation,Swiftmend; [target=targettarget,help] reset=12/target Rejuvenation,Swiftmend; [target=player] reset=12/target Rejuvenation,Swiftmend


[b]Hunter
[/b]

Easy Misdirection
Ever try to cast misdirection on your MT to help them get aggro back from a OP lock, only to find in your quick reflexes you cast it on a clothie or even worst, the healer? Well this macro will keep that from ever happening again, and makes casting misdirection on your MT one of the easiest things to do while trying to take down a boss in an instance. All you have to do is copy the code into a new macro and make sure your using the ? icon. Put it on your action bar and it's ready. Now all you have to do is target your MT and RIGHT-click the macro to set your MT to focus. Now all you have to do is LEFT-click the macro to cast misdirection when ever you want.
The code for this macro is:
#showtooltip
/cast [nobutton:2,target=focus] misdirection
/focus [button:2]


Pet Revive/Mend/Call
This mod will call your pet if it is dismissed, revive if dead, and mend if the other two parameters are not needed. Simple
but useful and helps to open up some space on your action bars. I actually found part of this in the forums so I am not claiming to take credit for all of this. I have made some changes so when your pet is dead and the portrait is gone, you can still cast revive pet. Just hold down alt when clicking the macro and it will cast revive. Remember to use the ? icon when creating the macro so it can auto display the revive pet icon. By doing this you will know when you have enough mana to cast revive pet.
The code for this macro is:
/cast [modifier:alt] revive pet; [target=pet,dead] Revive Pet; [nopet] Call Pet; Mend Pet

Pet Attack W/ Modifier
This macro is a typical pet attack and hunter's mark macro that all hunter's need. This one is a little different, because it also has the option to only send pet in to attack with out casting hunter's mark. I found this handy when facing mobs that
are immune to it, like the ones I farmed tonight! :)
The code for this macro is:
/cast [nomodifier:alt] hunter's mark
/cast [modifier:alt] petattack
/petattack


Blakkhoof's One Shot all
I don't know if this macro has been posted before, but I use this macro like breathing air. It will put all your attacks into
one button. Saves going back and forth through the keys. (and it free's up a few spots to boot). If you don't like the order,
just change the spell or attack. (Just change the order or spell all after ...combat)
The code for this macro is:
/castsequence reset=target/dead/combat Arcane Shot(Rank 9), Serpent Sting(Rank 10), Aimed Shot(Rank 7), Arcane Shot(Rank 9), Auto Shot, Concussive Shot, Steady Shot(Rank 1), Auto Shot

Change gun/bow & ammo
You need to change the name of your ranged weapon and ammo
The code for this macro is:
Gun and bullets:
/equip Explosive Shotgun
/equip Solid Shot
Bow and arrows:
/equip Raptor's End
/equip Razor Arrow

Pet care - Draenei Hunter Macro
Out of combat:
It will feed your pet when out of combat 0 means the first bag, goes 4 3 2 1 0.
And the first slot in your bag(upper left),
goes
0 1 2 3
5 6 7 8
9 10 11
12 13 14
(in your original backpack)
In combat:
It will on the first keypress, put mend heal on your pet. And on second press within 15 secs it will put Gift of the Naaru on
your pet. 1st note: If you wish to override and cast Mend Pet no matter out of combat, or if timer not ready, hold alt while pressing the macro. AND if you want to use bandage on your pet, hold ctrl while pressing the macro. Make sure the bandage is in the first bag, slot 2(or edit the macro yourself).
2nd note: Make sure the keybindings are gone for CTRL (any number 0-9) if you want to use the ctrl(bandage-pet option).
Feel free to comment, give feedback or modify your own!
The code for this macro is:
/castsequence [target=pet,combat,nomodifier] reset=15 Mend Pet, Gift of the Naaru
/cast [modifier:alt] Mend Pet
/cast [nocombat,nomodifier] Feed Pet
/use [nocombat,nomodifier] 0 1
/use [target=pet,modifier:ctrl] 0 2


super hunter macro(blood elfs only)
this macro contains several attacks and one aspect
you must be at least level 28 and be a blood elf hunter to make it work
The code for this macro is:
/cast Arcane Shot(Rank 4)
/cast Serpent Sting(Rank 4)
/cast Concussive Shot
/cast Mana Tap(Racial)
/petattack
/start attack
/cast Aspect of the Hawk(Rank 3)
/castsequence reset=10 hunter's mark, arcane shot, serpent sting, concussive shot


Pet Attack & Hunters's Mark
Send your pet to attack a target and cast Hunter's Mark on it. Has been my most used macro...
The code for this macro is:
/petattack
/cast Hunter's Mark


Feed/Mend Pet
Feeds your pet when not in combat (with the fourth slot of your backpack) or heals it during combat.
(If you want to have him eat food no matter what bag/slot it is in, change the 0 and 4 to the name of the food.)
You can change the numbers to change the slot of your food.
Bags go from 0-4 from right to left.
4 3 2 1 0
And the slots go in order of
01 02 03 04
05 06 07 08
09 10 11 12
13 14 15 16
17 18 19 20
[do not use the zero before single digits in the macro]
The code for this macro is:
#showtooltip
/cast [combat] Mend Pet; [nocombat] Feed Pet
/use [nocombat] 0 4
---
OR
---
#showtooltip
/cast [combat] Mend Pet; [nocombat] Feed Pet
/use [nocombat] Roasted Quail


[color=#000000]Tank Misdirect

This macro is a basic macro to never misdirect to the wrong tank again. You ever been in a raid and need to misdirect in the middle of battle only to be on the wrong raid member. Well never again. I will update this later once I get the code for
targeting the tanks target. I am new to macros but this would be handy right at the end so you target their target to isdirect in dedicated raid. Otherwise it works nicely in instances where a specific target may need misdirection to get off
a healer or squishy.
The code for this macro is:
/target tanksname
/cast misdirection


Mage

Tupper's Trinket/Fireball Macro
First this activates the trinket equipped in the TOP slot, then casts fireball. if your target is friendly, then the fireball will be cast at your target's target.
If your trinket is on cooldown, then this hides the error frame and error sounds.
***PLEASE REPLACE ALL OF THE EXCLAMATION MARKS WITH QUOTATION MARKS (SHIFT 2)***
The code for this macro is:
#Showtooltip
/script UIErrorsFrame:Hide()
/run SetCVar(!Sound_EnableSFX!,!0!)
/use 13
/run SetCVar(!Sound_EnableSFX!,!1!)
/script UIErrorsFrame:Clear(); UIErrorsFrame:Show()
/cast [harm] FireBall; target=targettarget,harm,exists]FireBall


Advanced Polymorph Macro
What does this macro do?
On leftclick: focusses the current target and casts polymorph on it. Reclicking during combat doesn't make you loose your
current target but re-pigs your focus.
On rightclick: if your focus has been killed it clears your focus. If there has a new target to be pigged (mostly if another mage in party/raid has been overrun by some nasty mob...) the current target is focussed and pigged.
I'd advise any mage to use some addon like PitBull/Quartz/EBB to display a handy timer right next to your focusframe to show up the remaining time on your polymorph.
(This macro can also finely be used for Paladins 'Turn undead' or Lockers 'Banish'... just change spells and displayed tooltip...)
The code for this macro is:
#Showtooltip Polymorph
/clearfocus [target=focus,dead]; clearfocus[button:2]
/focus [target=focus, noexists] target
/cast [target=focus, exists, harm] Polymorph(Rank 1: Pig)
/stopmacro [noharm]


Polymorph using focus
This will poly a target and set it as your focus. If you are in combat, you have a focus, and your focus is alive, it will
poly your focus. Otherwise it will set your current target as focus and poly that. You can shift-poly to polymorph your
target even if you are in combat and already have a focus set.
NOTE: this is set to use Polymorph: Turtle, so make sure to replace all "Polymorph(Rank 1: Turtle)" with a
different poly if you don't have a turtle
This you might want to change around:
--you can change shift to a different modifier by changing [nomodifier:shift] to whatever modifier you want
--you could get rid of the [nocombat] if you want it to keep your focus set when not in combat
Категория: МАКРОСЫ ДЛЯ World Of WarCraft | Просмотров: 6900 | Добавил: admin | Рейтинг: 1.7/3 |
Всего комментариев: 0
Профиль
Привет: Гость

Гость, мы рады вас видеть. Пожалуйста зарегистрируйтесь или авторизуйтесь!
Форма входа
Информация

Сегодня были:

Поиск
Статистика

Онлайн всего: 1
Гостей: 1
Пользователей: 0
Copyright © 2024
// -->