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.