Jump to content

autoit help needed


Recommended Posts

Hello, im lookin for some one with a bit of skill with auto it and maybe some time to kill.

heres the problem im playing this game and there is no buy mass items from vendor option i literaly have to click thousands of times and my hand is killing me!!!

if anyone is able to help me out and save me some pain maybe make an AU3 script that would click 100x or 50x when i hit lets say F1 or or home or something, i would be willing to give you a few bucks for your time threw

paypal for a few coffees ....thanks if your willing to help. oh and the game is fullscreen i dont know if AU3 will work threw that ?

Link to comment
Share on other sites


Easy peasy...

#include<misc.au3>
$dll=DllOpen("user32.dll")

;A Sloppy way to loop and check if F1 is pressed
While 1 = 1
If _IsPressed(70,$dll) Then
For $i = 1 To 100
;The keys you want to send to the game
Send("Send keys that makes me buy stuff")
Sleep(1)
Next
EndIf
WEnd

You may want to change the sleep timer to work better with your game, its in ms.

What keys do you want to send to the game??

Edited by pany03
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
  • Recently Browsing   0 members

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