Quote Originally Posted by 'thinus',index.php?page=Thread&postID=30584#post30 584



Quote Originally Posted by 'Achakul',index.php?page=Thread&postID=30580#post3 0580
Do i have to copy the entire wow folder? That's a good 10 gigs per copy and I don't have that much space.


Well then you will need to modify your macros. Why do you need so many? You need to give us more information before we can help you.

Also look at using MODIFIERS.

Code:
 Fireball: /cast Fireball Fireblast
/cast Fireblast Pyroblast 
/cast Pyroblast
can be combined into one macro with modifiers

Code:
 /cast [modifier:alt] Pyroblast 
/cast [modifier:shift] Fireblast 
/stopmacro [modifier] 
/cast Fireball
If you bind the macro above to your 1 key then pressing 1 will cast fireball. Pressing SHIFT+1 will cast Fireblast and ALT+1 will cast Pyroblast. Just make sure that SHIFT+1 and ALT+1 is UNBOUND!

NOTE: The macro above was sucked out of my thumb and not tested but looks good in theory.

you can actually condense that macro even more into this

/cast [modifier:alt] Pyroblast; [modifier:shift] Fireblast; Fireball

However, without any [target=blah] in there you must have a hostile target already for it to work. just add in any , target=focus type thing you want inside the brackets and you're fine.

*edit* make sure to put the one without any modifier last because when a macro is run it goes until a condition is met and then stops.