Moderator: MacroQuest Developers
and...Hey i have another suggestion...not to sure if ya can do it or not but here it goes...a /anchor command so that it saves u current loc or something and will return to that spot...the /leash command is good but pisses people off alot, they think u are some kind of perv that needs to like breathe on them...just an idea
I don't want to sound haughty, but in two weeks nobody has reported any leashing errors. You say you have some "errors now and then" (with no details that I could use to figure out how to track down and fix these errors); also, you didn't know about the leash staking when you made your original post. Appreciate the "heads up," but I'm going to assume user error unless you post some of the errors MQ2 is generating when RH is behaving poorly "now and then."yea sorry bout that my macro wasnt working correctly...but it works now thanx...leashing has been having some errors every now and then..just giving ya a heads up on it to see if u can spot the problem

Code: Select all
/if (${doEvade} && !${Me.Moving} && ${Target.ID} && ${Me.AbilityReady["Hide"]}) {
Code: Select all
/if (${doEvade} && ${Target.ID} && ${Target.PctHPs}>=20 && ${Me.AbilityReady["Hide"]}) {
Code: Select all
#Event Sneak "#*#are as quiet as a cat stalking its prey#*#"Code: Select all
/declare temp int outerCode: Select all
Sub Event_Sneak
/varset temp 1
/returnCode: Select all
|- Lets hide and sneak if not already and we're set to do so **Code: Select all
/if (${doHideSneak} && ${Me.AbilityReady["Sneak"]} && !${Me.Casting.ID} && ${Me.State.NotEqual[BIND]} && !${Window[TradeWnd].Open} && !${Window[MerchantWnd].Open} && !${Window[BigBankWnd].Open}) /doability "Sneak"
/if (${doHideSneak} && ${Me.AbilityReady["Hide"]} && !${Me.Casting.ID} && !${Me.Moving} && ${Me.State.NotEqual[BIND]} && !${Window[TradeWnd].Open} && !${Window[MerchantWnd].Open} && !${Window[BigBankWnd].Open}) /doability "Hide"
Code: Select all
/if (${doHideSneak} && ${Me.AbilityReady["Sneak"]} && !${Me.Casting.ID} && ${Me.State.NotEqual[BIND]} && !${Window[TradeWnd].Open} && !${Window[MerchantWnd].Open} && !${Window[BigBankWnd].Open}) {
/delay 2
/doability "Sneak"
}
/if (${doHideSneak} && ${Me.AbilityReady["Hide"]} && !${Me.Casting.ID} && ${Me.State.NotEqual[BIND]} && !${Window[TradeWnd].Open} && !${Window[MerchantWnd].Open} && !${Window[BigBankWnd].Open} && ${temp} == 1) {
/doability "Hide"
/varset temp 0
}Code: Select all
Sub Event_AttackOn
/echo Autoattack activated! Target: ${Target.CleanName}
/return
Code: Select all
/varset temp 0


