Behind / Front Target
Posted: Sat May 14, 2011 11:40 am
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>
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>