xxfxx Posted April 5, 2007 Posted April 5, 2007 a simple script to run two keystrokes in a loop, it would consist of {f2-heal}{f1-special} {pause set to be anything(varable)}{loop}could someone make that simple script up so I can rember the simple auto it format. It would be nice to incorprate a text or message box interface to set any key and any time for loop but is not a necasity as i belive i can incorprate that once i get back in the swing of things..Thank YouXxFxX
Bert Posted April 5, 2007 Posted April 5, 2007 (edited) 1 2 3 say with me Use the help file! Use the help file! 4 5 6 say real quick! Use the help file! Use the help file! seriously....look at the help file and at least make a attempt. There are many examples there that will answer your questions. Edited April 5, 2007 by Volly The Vollatran project My blog: http://www.vollysinterestingshit.com/
xxfxx Posted April 5, 2007 Author Posted April 5, 2007 1 2 3 say with meUse the help file! Use the help file!4 5 6 say real quick!Use the help file! Use the help file!seriously....look at the help file and at least make a attempt. There are many examples there that will answer your questions.well if you look i posted earlyer and there was many varables and this is stripd down i have it coded and wont run just a simple thing not ment for sarcasm
acidfear Posted April 5, 2007 Posted April 5, 2007 Check the help file for _IsPressed() or HotKeySet() ?
Kickassjoe Posted April 5, 2007 Posted April 5, 2007 Post the script that you are trying to use to do this here, so someone can help you figure out what is wrong please. What goes around comes around... Payback's a bitch.
Hyflex Posted April 5, 2007 Posted April 5, 2007 (edited) Dude, i tryed helping you in ur last topic you didnt reply so i dont know....http://www.autoitscript.com/forum/index.php?showtopic=43689Or are you looking for:expandcollapse popup;;;; Global Pause Start ;;;; Global $Paused ;;;; Global Pause End ;;;; ;;;; Hotkey Settings Start ;;;; HotKeySet("{F1}", "Heal") HotKeySet("{F2}", "Special") HotKeySet("{END}", "Terminate") ;;;; Hotkey Settings End ;;;; ;;;; Script Global Sleep Start ;;;; While 1 Sleep(100) WEnd ;;;; Script Global Sleep End ;;;; ;;;; Toggle Pause on Heal ;;;; Func Heal() $Paused = Not $Paused While $Paused ;> Add You script below this mark!< ; >Add You script above this mark!< WEnd EndFunc ;;;; Toggle Pause on Heal End;;;; ;;;; Toggle Pause on Special ;;;; Func Special() $Paused = Not $Paused While $Paused ;> Add You script below this mark!< ; >Add You script above this mark!< WEnd EndFunc ;;;; Toggle Pause on Special End ;;;; ;;;; End/Close/Terminate Function Start ;;;; Func Terminate() Exit EndFunc ;;;; End/Close/Terminate Function End ;;;; Edited April 5, 2007 by XxXGoD
xxfxx Posted April 5, 2007 Author Posted April 5, 2007 HEY xxgod ty for the help that first part was exactly what i was looking for i have tweeked it and it works flawlessly and now that i have seen more it has brougt back lots jsut had to see a good simple working code again to refresh my self lol i thank you for yout time and let me know if i can return the fav anytime.THANK YOUXxFxX
jvanegmond Posted April 5, 2007 Posted April 5, 2007 .... now that i have seen more it has brougt back lots jsut had to see a good simple working code again to refresh my self....This forum is full of code, and you HAD to create a new topic!? github.com/jvanegmond
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now