Skip to content

Instantly share code, notes, and snippets.

@jeremyBanks
Created April 29, 2009 14:39
Show Gist options
  • Select an option

  • Save jeremyBanks/103818 to your computer and use it in GitHub Desktop.

Select an option

Save jeremyBanks/103818 to your computer and use it in GitHub Desktop.
[2010-01] ramblings on wow druid macros

Notes

  • [mod:shift]
  • [flying] doesn't mean I can fly.
  • This article is a good reference for Druidic stuff.
    • [stance:1] is bear
    • [stance:2] is aquatic
    • [stance:3] is cat
    • [stance:4] is travel
    • [stance:5] is moonkin since I have it
    • [stance:6] is flight since I have moonkin

Transport Form

Python Pseudocode

if me.is_swimming:
	me.cast("Aquatic Form")
elif me.in_combat:
	me.cast("Travel Form")
else:
	if not mod["shift"]: try: me.cast("Flight Form")
	
if me.form != "Fight Form":
	me.cast("Swift Stormsaber")

Macro Code

/cast [swimming] Aquatic Form; [combat] Travel Form; [nomod:shift] Flight Form; [form:6] Flight Form
/cast [noform:6] Swift Stormsaber

Super-Stealthy

Cat -> Stealth?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment