Mini Rogue mac

Got a cool macro idea? Wanna request a macro? Here is the place for you!

Moderator: MacroQuest Developers

Roodoodog
decaying skeleton
decaying skeleton
Posts: 6
Joined: Fri Apr 23, 2004 4:38 am

Mini Rogue mac

Post by Roodoodog » Fri Apr 23, 2004 4:45 am

Am hoping to learn how to do these myself but as yet am still grasping the basics. Looking for help to create a basic rog mac.

Anyone have an idea how to:

unsneak/unhide > Auto BS > (after mob dead) Sneak/hide

Thought of maybe somehow adding in Assassins Strike but even with the above it wouldnt be too hard manually.

Any help much appreciated,

Roo

NotHere
a lesser mummy
a lesser mummy
Posts: 40
Joined: Fri Jan 09, 2004 5:59 am

Post by NotHere » Fri Apr 23, 2004 4:55 am

Well, you could take a look in the Depot forum?

http://macroquest2.com/phpBB2/viewtopic.php?t=6038

Seems to me it does what you want, and then some. :D

If you want something simpler, just modify it.
NotHere
/afk

Cunning
a lesser mummy
a lesser mummy
Posts: 61
Joined: Tue Mar 23, 2004 4:42 pm

Post by Cunning » Mon Apr 26, 2004 7:03 pm

This is pretty simple. If you're fighting, it auto evades and backstabs. If you're not, it sneak/hides.

Code: Select all

#turbo 40

Sub Main
:Hideloop
	/delay 4
	/if (${Me.Combat}) {
		/if (${Me.Sneaking}==1) {
			/attack on
			/doability "Sneak"
		}
		/if (${Me.AbilityReady["Hide"]}==1) {
			/attack off
			/delay 2
			/doability "Hide"
			/attack on
		}
		/if (${Me.AbilityReady["Backstab"]}==1) /doability "Backstab"
		/goto :Hideloop
	} else {
:WaitForSneak 
        	
       	/if (${Me.Sneaking}==1) { 
       	    /goto :WaitForHide 
       	} else { 
       	    /doability "Sneak" 
       	    /delay 4 
       	    /goto :WaitForSneak 
       	} 
	        
:WaitForHide 
	    /delay 4 
	    /if (${Me.AbilityReady["Hide"]}==1) /doability "Hide" 
 	    /delay 10
	    /goto :Hideloop
	}

/endmacro