Behind / Front Target

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
MinMax
Posts: 46
Joined: Mon Dec 21, 2009 6:45 am

Behind / Front Target

#1 Post by MinMax »

Just for fun i build a Rogue. With Shadow_Step, Sneak_Atack and Blind_Spot i have my troubles.

More then 50% fails with my settings below. Is there a way to trigger the onSkillCast with arg1.Name ="StatusBehindTarget" ??


<skills_rogue>
<skill name="ROGUE_SHADOW_STEP" hotkey="VK_3" priority="40"/>
<skill name="ROGUE_SNEAK_ATTACK" modifier="" hotkey="VK_9" priority="30" autouse="false" />
<skill name="ROGUE_BLIND_SPOT" hotkey="MACRO" priority="20" autouse="false" />
<skills_rogue>

<onSkillCast>
if( arg1.Name == "ROGUE_SHADOW_STEP" ) then
player:cast("ROGUE_SNEAK_ATTACK");
yrest(500);
player:cast("ROGUE_BLIND_SPOT");
end
</onSkillCast>
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Behind / Front Target

#2 Post by rock5 »

What success rate do you get when you do it manually? I don't think shadow step/sneak attack is supposed to be that reliable. I think if you have already aggroed the mob you pretty much can't get behind it anyway. I'm not 100% sure because I don't really use it, but that's what I remember when I tried it. Maybe someone with more experience with it could comment.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
MinMax
Posts: 46
Joined: Mon Dec 21, 2009 6:45 am

Re: Behind / Front Target

#3 Post by MinMax »

If you are playing manually you can run through the mob and cast Sneak_Atack and Blind_Spot without SHADOW_STEP.
With the bot i tried to move by Keypress. Wasn´t satisfying, because the distance to the mob is always different.
Using SHADOW_STEP i have a to high error rate.

I will try to calculate the distance player/target and teleport behind the target. I will take a look into your catchCavy script. As i remember there you had such a distance code :)
Post Reply