Page 1 of 1

Automatic facing Target

Posted: July 22nd, 2007, 3:15 am
by loregaba
If possible, I'de like to have a script that will automatically turn your character to face its current target. It would be nice to be toggable from a hotbar button using the /alias shortcut fonction.

Thanks 8)

Posted: July 22nd, 2007, 6:39 am
by 6point6
its very easy from AutoIT thats for sure. and since it will support autoit.

Code: Select all


Opt('SendKeyDownDelay',100)
send("ssssssssssssssssss")



sending an attack skill after this if u got automove to target enabled will focus on ur target.

Posted: August 2nd, 2007, 10:45 am
by loregaba
Nice, thx, i'm happy to know it's possible. I'll wait 1.0 and try it out.

Posted: September 18th, 2007, 9:13 am
by ergotamine
uhm, doesnt that just walk you backwords at a specific speed?

Posted: September 18th, 2007, 10:11 am
by pimpoo
this will do it:

Code: Select all

Sub FaceTarget()
while GetTargetDirection() - GetPlayerHeading() <> 0
   keyboard.sendkeys("d")
wend
End Sub