hi,
i want to rotate the camera into another direction in an autoit script. But i haven't found a secure solution yet that works 100%.
i tried things like:
move mouse while right mouse button is pressed:
with drag mouse function:
or by running a circle:
but none of these attemts is working good enough to implement it in a bot. more precise i want to turn left in nebo terrace to face the undead located on the way to the cursed lands area. after killing the first archers i head back to the sign of hot springs (fix position) and the bot should rotate the camera towards west, approximatly 90 degrees.
strafing left all the way would take too much time and maybe (definitly) the monk runs out of mana because of recasting protspirit all the time in order not to get killed from randomly spawning undead.
do you have any ideas how to implement the problem or do you have better suggestions?
thanks in advance
nomi
i want to rotate the camera into another direction in an autoit script. But i haven't found a secure solution yet that works 100%.
i tried things like:
move mouse while right mouse button is pressed:
Code:
MouseMove(1, 200) MouseDown("right") MouseMove(1, 250, 100) MouseUp("right")
Code:
MouseClickDrag("right", 100, 100, 110, 100, 50)
Code:
send("{"w down}")
send("{"d down}")
sleep(1000)
send("{"d up}")
send("{"w up}")
strafing left all the way would take too much time and maybe (definitly) the monk runs out of mana because of recasting protspirit all the time in order not to get killed from randomly spawning undead.
do you have any ideas how to implement the problem or do you have better suggestions?
thanks in advance
nomi