Jump to content

Recommended Posts

Posted

Hello all, i need your help, i have an AutoIT Script made by someone and i want to modefie it or do a new one. I dont know almous nothing about programing ind my english does not help me mutch :(, so meybe one of u can help me out plss.

I need a AutoIT Script that can do a very simple thing i belive, i need it to do when i stat it a key pres simulation of 1,2,3 at a very short period of time something like 1ms if its posible.

Can any one help pls. i u have questions and i can inswer i'm here all day.

P.S. i have a script now that simuletes to pres key1 and after 2-3 min preses preses key2 for about 30 seconds after swetches back to 1 and so on.

i need this new one to pres 1,2,3 fast and continuous sonething like 1,2,3, 1,2,3, 1,2,3, 1,2,3 and so on until i stop him :D

I hope someone of u understans what i just wrote and is welling to help.

Help me out PLSSSSSSS!!!

i Uploaded the script i have now.

DL_critical_buff_home_key_.exe


Posted

ok, I dont have autoit on the pc I'm working on right now, but I've been working with autoit before.

this should work I think

while 1
Send("123")
sleep(1)
wend

it does not have a key to end the program yet, if you want to know how to do that, open the help file of autoit, and search for hotkeyset.

good luck :)

Posted

Tks a lot, i'm at worck right now :( soi cant try it out but ill do that as soon as i get home.

If anyone else can help with something please do.

An working sript will be the best :P as i told before i the noobyest of the noobs inthinsgslike this :((

Posted (edited)

it looks like the website of autoit (www.autoitscript.com) is down right now, but I believe the code for a hotkey to quit a program is this:

HotKeySet("{ESC}", "end")

Func end()
exit 0
EndFunc

but I might be wrong about that.

the hotkeyset line can be placed on top of the script, and the rest below the Wend line.

hope it works :)

pressing esc should result in closing the program

Edited by nick_007308

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...