Jump to content

Recommended Posts

Posted

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 You

XxFxX

Posted

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.

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

Posted

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.

Posted (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=43689

Or are you looking for:

;;;; 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 by XxXGoD
Posted

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 YOU

XxFxX

:shocked:

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