Useful Macros for Vanilla WoW

Useful Vanilla WoW 1.12.1 Macros by Wayleran

Reset dungeons and instances:

/script ResetInstances()

Toggle between Ore tracking and Herb tracking (Mining/Herbalism):

/run if n~= 1 then CastSpellByName("Find Herbs") n=1 else CastSpellByName("Find Minerals") n=0 ;end

Pet Attack – useful for Hunters and Warlocks

/script PetAttack(target)

Resurrection macro

/s Resurecting %t!
/cast Resurrection

Warlock summon macro

/s Summoning %t - please click portal!
/cast Ritual of Summoning

Mage portal macro

/s Making portal to Ironforge!
/cast Portal: Ironforge

Stop attacking after Sap:

/cast Sap
/script ClearTarget()

[How to] Link any Item in a Macro

write your macro without the and place the Cursor where your item should be
for example :
Code:
/2 Selling 5x /w me for Price
Press 'ESC' once so the macro window loses cursor focus
Open your Chat Window and Write
Code:
/script MacroFrameText:Insert("")
Put your Cursor between the two "" ( ALT + Left/Right)
Shift Click on the Item you want to add to the macro

Playing sounds:
API_PlaySound
Kalimdor_instance_sounds
Alliance_player_character_sounds

/script PlaySound("GnomeExploration")
/script PlaySound("RaidWarning")
/script PlaySound("LEVELUPSOUND");
/run PlaySoundFile("Sound\\Creature\\Skeram\\SkeramAreYouSo.wav")

https://wowpedia.fandom.com/wiki/PlaySoundFile_macros_-_Music_sounds

/script PlaySoundFile("Sound\\Music\\CityMusic\\Darnassus\\Darnassus Intro.mp3")

https://wowpedia.fandom.com/wiki/PlaySoundFile_macros
https://www.curseforge.com/wow/addons/soundlist-classic

Leave a comment