Fine tuning a rogue macro

Need help with a macro you are writing? Ask here!

Moderator: MacroQuest Developers

Goaty
decaying skeleton
decaying skeleton
Posts: 6
Joined: Fri May 17, 2013 8:36 pm

Fine tuning a rogue macro

Post by Goaty » Fri Sep 05, 2014 2:42 pm

Hey everyone, I have a macro a friend of mine made a few years ago that I used with my rogue. I'm currently running my rogue again but can't get the macro to trigger higher level abilities like draggerthrust and thief's vision. It works fine with razorarc and thief's eye however. Here is the macro without any of my modification attempts:

Code: Select all

#turbo

| Macstab.mac by Stabulous

|#include HideSneak.mac
#event Success "You have stolen #1#"
#event Backstab "You backstab #1# for #2# points of damage."
#event MyDamage "You pierce #1# for #2# points of damage."
#event NonMelDamage "Stabulous hit #1# for #2# points of non-melee damage."

Sub Main

	/declare timeStart int outer
	/declare timeEnd int outer
	/declare timeElapsed int outer

	/declare bsDmg int outer
	/declare myDmg int outer
	/declare nonDmg int outer
	/declare fltExp float outer
	/varset fltExp ${Me.PctExp}

	/echo Attacking ${Target.Name}, a ${Target.Level} ${Target.Class}

	/call MoveTo

	/call DoRazorarc

	/varset timeStart ${Time.SecondsSinceMidnight}

	/if (${Me.AbilityReady[Backstab]}) /doability Backstab

	/doability "Thief's Eyes"

	/attack on

	:Loop

		/doevents

|		/if (${Me.PctHPs}<30) /vtest 007

		/face fast
		/call DoBS
		/if (${Me.AbilityReady[Intimidation]}) /doability Intimidation
		/if (${Me.AbilityReady[Disarm]}) /doability Disarm
|		/if (${Me.AbilityReady[Pick Pockets]}) /call PickPockets
		/if (${Me.PctHPs}<75) /call SaveMyself
		/delay 2
		/call StayClose

	/if (${Target.ID}) /goto :Loop

|	/call AcquireNewTarget
	
	/attack off

	/varset timeEnd ${Time.SecondsSinceMidnight}
	/varset timeElapsed ${Math.Calc[${timeEnd} - ${timeStart}]}
|	/call LootHide

|	/disc Thief's Eyes
	/declare TotalDamage int inner
	/varset TotalDamage ${Math.Calc[${bsDmg} + ${nonDmg} + ${myDmg}]}

	/echo Duration: ${timeElapsed} seconds.
	/echo Standard Damage: ${myDmg}
	/echo Backstab Damage: ${bsDmg}
	/echo Non-melee Damage: ${nonDmg}
	/echo Total Damage: ${TotalDamage}
	/echo Damage Per Second: ${Math.Calc[${TotalDamage} / ${timeElapsed}]}
	/echo Exp: ${Me.PctExp}% of level. (+${Math.Calc[${Me.PctExp}-${fltExp}]}%)

	/call HideSneak

/return

Sub AcquireNewTarget

	:FindTarget
	/squelch /target npc radius 30 next
	/if (${Target.ID}) {
		/if (${Target.DistanceZ}<15) {
			/attack on
			/goto :Loop
		} else {
			/goto :FindTarget
		}
	} else {
		/goto :FindTarget
	}

/return

Sub SaveMyself

		/attack off
		/aa act Assassin's Feign
		/target clear
		/keypress down hold
		/delay 1
		/aa act Escape
		/delay 2
		/keypress down
		/endmac

/return

Sub Event_Success(string Param1)
	/timed 10 /autoinv
	/echo Stole ${Param1}
/return

Sub PickPockets

	/attack off
	/delay 2
	/doability "Pick Pockets"
	/delay 2
	/attack on

/return

Sub FindNextTarget

	:FindTarget
	/squelch /target npc radius 30 next
	/if (${Target.ID}) {
		/if (${Target.DistanceZ}<15) {
			/attack on
			/goto :Loop
		} else {
			/goto :FindTarget
		}
	} else {
		/goto :FindTarget
	}

/return

Sub DoBS
	/if (${Me.AbilityReady[Backstab]}) {
		|/call MoveTo
		/doability Backstab
	}
/return

Sub DoRazorarc
	/if (${Me.CombatAbilityReady[Razorarc]}) {
		/doability Razorarc
		/delay 5
	}
/return

Sub Event_MyDamage(string Line, string Mob, int Damage)
	|/echo Hit for ${myDamage}s
	/varset myDmg ${Math.Calc[${myDmg}+${Damage}]}
/return

Sub Event_Backstab(string Line, string Mob, int Damage)
	|/vplay 008
	/echo ${Damage}
	|/if (${Damage}>1000) /vgroup 001
	|/if (${Damage}>17000) /g BS'd for ${Damage}!
	/varset bsDmg ${Math.Calc[${bsDmg}+${Damage}]}
/return

Sub Event_NonMelDamage(string Line, string Mob, int Damage)
	|/echo Hit for ${myDamage}s
	/varset nonDmg ${Math.Calc[${nonDmg}+${Damage}]}
/return

Sub StayClose

	/declare intRange int inner
	/varcalc intRange ${Math.Calc[${Target.MaxRangeTo}-(${Target.MaxRangeTo}/4)]}

	:MoveToLoop

	/if (${Target.Distance}>${intRange}) /keypress up hold
	/face fast
	/delay 1

	/if (${Target.Distance}>${intRange}) /goto :MoveToLoop

	/keypress up

/return

Sub MoveTo

  :MoveToLoop

	/if (${Target.Distance}>3) /keypress up hold
	/face fast
	/delay 1

	/if (${Target.Distance}>3) /goto :MoveToLoop

	/keypress up

	/face nolook fast Heading ${Target.Heading.DegreesCCW}

	/keypress down hold

	:BackLoop
		/delay 1
	/if (${Target.Distance}<5) /goto :BackLoop
	
	/keypress down

	/delay 1

/return

Sub HideSneak

	/call DoSneak
	/call DoHide

	/popup Ready!

/return

Sub DoHide

	:TryHide

	/if (${Me.AbilityReady[Hide]}) /doability Hide
	/delay 5
	/if (!${Me.Invis}) {
		/popup Wait ...
		/doability Hide
		/goto :TryHide
	}

/return

Sub DoSneak

	:TrySneak

	/if (${Me.AbilityReady[Sneak]}) /doability Sneak
	/delay 5
	/if (!${Me.Sneaking}) {
		/popup Wait ...
		/goto :TrySneak
	}

/return
Any help in getting this macro current would be awesome, thanks in advance!

FrankJScott
naggy
naggy
Posts: 2365
Joined: Sun Feb 19, 2023 7:11 am

Top Rated Healthy Nutrition Supplement Info

Post by FrankJScott » Thu Jun 19, 2025 11:52 am

In reply to the person inquiring about supplements that help control blood sugar, liver detox, magnesium supplement for high blood pressure, magnesium glycinate sale, magnesium glycinate for blood pressure, holistic supplements, best supplements for your immune system, weight loss fat burning pills, apple cider vinegar supplements, best immune health supplements, I highly suggest this awesome healthy nutrition supplement info or vitamin c for immune system, supplements to increase strength, best all natural vitamin c, best nutrition products, magnesium glycinate how much to take, memory supplements, supplements that help with blood sugar, nutrition for the brain, best liver cleanse detox supplement, my supplements, and don't forget this what is it worth on healthy nutrition supplement site on top of all vitamins and what they do, get supplements, best bone supplements, supplements to help immune system, best supplements to take daily, blood sugar support pills, liver health supplements, liver cleanse, supplements for stomach fat loss, supplements to improve immune system, not to mention this new healthy nutrition supplement link which is also great. Also, have a look at this more tips here on healthy nutrition supplement tips not to mention magnesium glycinate vitamins, best high blood pressure supplements, best supplements to help lower blood pressure, neuro supplements, liver enzymes supplements, review magnesium supplements, best supplement to help burn fat, best supplements for quick weight loss, supplements to improve immune system, blood sugar support supplements, and don't forget this best healthy nutrition supplement blog together with skin support supplements, good brain supplements, liver detox capsules, best brain supplements, focus supplements, website for not to mention leg cramps supplements, wellbeing detox, top rated vitamin supplements, better magnesium, best blood sugar supplement, for good measure. Check more @ Great Business Asset Investment Info 5622047

FrankJScott
naggy
naggy
Posts: 2365
Joined: Sun Feb 19, 2023 7:11 am

Top Rated Healthy Nutrition Supplement Website

Post by FrankJScott » Thu Jun 19, 2025 11:54 am

In response to the lady asking about the best natural vitamin c supplement, best herbal vitamins, supplement recommendations, organic vitamins, vitamin for weight loss, best quality liposomal vitamin c, supplements to take for health, magnesium supplement for weight loss, supplements to improve brain health, keto products for weight loss, I highly suggest this updated healthy nutrition supplement tips or supplements to stay healthy, supplements to help lower blood pressure, supplements for immune system, cleanse capsules, high quality vitamin c supplement, magnesium capsules benefits, magnesium glycinate supplements, top quality supplement brands, high quality magnesium glycinate, top rated vitamin c supplement, which is worth considering with this additional reading about healthy nutrition supplement link bearing in mind best supplements in usa, liver cleanse pills, vitamins to take for liver health, body supplements, top hair supplements, best energy weight loss supplement, best supplements to take for fat loss, detox supplements for weight loss, best supplements for heart health, best magnesium pills, which is worth considering with this learn more about healthy nutrition supplement blog which is also great. Also, have a look at this awesome healthy nutrition supplement advice and don't forget best weight loss supplement for high blood pressure, supplements for digestive problems, top vitamins, best magnesium for your body, skin care supplements, vitamins for high blood sugar, good supplements to take, natural vitamins to lower blood pressure, healthy blood pressure supplements, good supplements, together with this weblink about healthy nutrition supplement details together with foods and supplements for liver health, the best vitamin supplements, health food supplements, best supplements to help weight loss, best blood sugar lowering supplements, on the main page about not to mention best supplements for improving brain function, burn supplements, best holistic supplements, supplements manufacturing, supplements to lower blood pressure quickly, for good measure. Check more @ Recommended Custom Printing Service Sydney Blog 9a89a61

FrankJScott
naggy
naggy
Posts: 2365
Joined: Sun Feb 19, 2023 7:11 am

High Rated Chinese Furniture Manufacturer Guide

Post by FrankJScott » Thu Jul 10, 2025 2:00 pm

To the lady inquiring about types of kitchen cupboards, kitchen cabinet reviews, kitchen cabinet makers, custom kitchen cabinet ideas, wardrobe closet for sale near me, use kitchen cabinet, custom armoire closet, kitchen cupboard suppliers, small kitchen cabinets for sale, wardrobe cabinet design with dimensions, I highly recommend this top chinese cabinet manufacturer site or new kitchen furniture, custom kitchen cabinet ideas, storage armoire with shelves, cheap cabinets for kitchen near me, small kitchen cabinets for sale, house kitchen cabinet design, 7 kitchen cabinet, kitchen cabinets suppliers near me, modern kitchen wardrobe design, white shaker style kitchen cabinets, not to mention this top rated chinese cabinet manufacturer blog together with kitchen wooden cupboard design, stores that sell kitchen cabinets, kitchen cabinet maker philippines, wardrobes and closets, stainless kitchen cabinet, best kitchen cabinet ideas, modern oak kitchen design, kitchen cabinets online shopping, small kitchen cabinets for sale, large wardrobe closet, bearing in mind this her explanation for chinese furniture manufacturer url which is also great. Also, have a look at this top rated chinese cabinet manufacturer info alongside all hanging cabinet design, kitchen wardrobe ideas, modern gloss kitchen cabinets, best wardrobe design, modern wooden wardrobe design, cupboard cupboard design, inexpensive kitchen cabinets near me, walk in closet design, kitchen design with door, kitchen cabinet design photos, not to mention this going here on chinese furniture manufacturer advice and don't forget new top kitchen cabinets, white kitchen unit designs, interior cabinets, kitchen cabinets maker near me, kitchen cabinet factory near me, recommended site about bearing in mind two tone kitchen cabinets green, modern kitchen wardrobe, already made kitchen cabinets, armoire furniture piece, wardrobe door design ideas, for good measure. Check more @ Great AI stock investing platform Website 8ecbe2d