Jump to content

ingame movement automation


yorre
 Share

Recommended Posts

wow anti AFK script + movement ...

ive been browsing this forum for quite a while now and managed to create some scripts now (all very simple ones)

now ive been thinking of a more complex script, however, browsing the help file and using the search function didnt got me any further...

HotKeySet("^!z","Movment") 
 HotKeySet("^!x","End")
  While Sleep(1000)
     WEnd
  Func Movment() 
          While 1 
        Sleep(3000) 
        Send("{=}") 
        Sleep(5000) 
        MouseClick("right") 
    WEnd 
 EndFunc 
 Func End() 
    Exit
EndFunc

this is my anti AFK script (partially copy pasted, + edited to personal preference)

i'd like to add a script to this one that does the following: (also activated by the ctrl alt z combination ;wich is specified in my afk script)

"press the Up arrow for 4 seconds then stop, press the right arrow for 0.4 seconds, press the up arrow for 16 seconds" <-- happens after a wait time of 2minutes

after this is done once, it shouldnt be repeated

could someone point me in the right direction with a hint? (im a beginner , dont make it hard one me ^^)

if this is simply impossible to fulfill all my desires, plz say how far it actually IS possible then.

sorry for my english... (building sentences that actually make sence isnt that easy =/)

Link to comment
Share on other sites

HotKeySet("^!z", "_Movement")
HotKeySet("^!x", "_End")

While 1
Sleep(100)
WEnd

Func _Movement()
While 2
Sleep(12000)
Send("{UP DOWN}")
Sleep(4000)
Send("{UP UP}")
Send("{RIGHT DOWN}")
Sleep(400)
Send("{RIGHT UP}")
Sleep(16000)
Send("{RIGHT DOWN}")
WEnd

Func _End()
Sleep(500)
Exit
EndFunc

Try this

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...