Jump to content

Recommended Posts

Posted

So, I am completely new to AutoIt.

I am trying to make a script that will run my character in Minecraft around in a spiral.

I've got this for walking forward

local $i=0

If _IsPressed("1B") Then
$i= $i+2
EndIf

Do
Send('{w down}')
Until $i>1

From what I've gathered, that should make the W key hold down, until I press escape. In comes problem number 1, pressing Escape doesn't seem to stop this. Any idea what I'm doing wrong?

Problem number two... I need the mouse to continously float to the left. However, from what I read it looked like the mouse can only move to certain screen coordinates. What do I need to do to make the mouse constantly move?

I need this to pre-generate the world for my server, since the world generation mod I am using is not Bukkit compatible.

Guest
This topic is now closed to further replies.
×
×
  • Create New...