sangoku22 wrote:the hunting script is for a melee class, a shaman can't take on tribals easy when melleing hehe!!
so thats why I want someone to make one like I described.
I'll give you want you want but it will cost your first born and the blood of a goat.
Ever think of at least trying to get it started ?
My impersonation..
I want someone else to do all the work for me! This great macro will be useful for Shaman's my level and definatly not on my server and must be into tradeskills smithing and tailoring and also be good at macros and be willing to do it for me without any cooperation from me (just pure leeching on my part) and work perfect without problems and do my taxes because they are comming up soon.
Oh and to make things interesting you can't click.
Personally I want the clean the house macro, anyone wana get that one going for me?
Alll in good clean fun right?
Oh by the way just so this isn't a totally useless flame post.
Try editing the hunting script. Set up loot, avoidance, target mobs in the zone part of the macro. Then just change the actual fighting subroutines, I have edited Fippy's to do that already, some slight bugs but not hard to fix.
Here's a (piss poor) example of a shaman hunting routine. Works pretty well for me depending on the camp.
Code: Select all
Sub Fight
:ReFight
/delay 20
/mqlog The value of tID is $tID
/call cast "Togor's Insects"
/doevents
/if n $Recast==1 {
/varset Recast 0
/goto :ReFight
}
/call gotoloc $HomeX,$HomeY
/face nopredict
/call cast "Envenomed Bolt"
/attack on
/face nopredict
/delay 40
/doevents
/if n $target(distance)&20 {
/call Melee
} else {
/assist
/if $target(name)!=$char(name) /call Loop
/call checkdist
/goto :Refight
}
/face nopredict
/doevents Killed
/varset ReFight 0
/return
Oh and heres a good one for getting into correct casting radius
Code: Select all
Sub CheckDist
:Distance
/if n $target(distance)&160 {
/sendkey up up
/return
} else {
/face nopredict
/sendkey down up
/goto :Distance
}
Edit : Started looking at code and found several bugs, sorry this is old code =)