Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; 1. add a checkbox
- ; 2. add if-statement in loop
- ; 3. Sleep
- ;
- ; Works with multipe Clients if you got a little army
- gui, Color, EEAA99 ; Fancy Color
- gui, font, S12 ;Change font size to 12
- Gui, Add, GroupBox, x0 w460 h350, AO - Autoplay ; add a groupbox
- gui, Add, Edit , x20 y30 vchar
- gui, Add, Checkbox, checked0 vrun, Run
- gui, Add, Checkbox, checked0 vPressF1, F1 (Target self)
- gui, Add, Checkbox, checked0 vPressX, x-0-x (Sit and then stand up after 0)
- gui, Add, Checkbox, checked0 vPress9, 9 (Stim on 9)
- gui, Add, Checkbox, checked0 vPressTab, Tab (Target closest enemy)
- gui, Add, Checkbox, checked0 vPressF, F (Do stuff, bind to this key)
- gui, Show
- Loop
- {
- WinGet, char1, ID, Anarchy Online -
- Sleep 222
- Gui, Submit, nohide
- If Run
- {
- Gui, Submit, nohide
- If PressF1
- ControlSend,, {F1}, ahk_id %char1%
- Sleep 255
- If PressX
- ControlSend,, {x}, ahk_id %char1%
- Sleep 155
- If PressX
- ControlSend,, {0}, ahk_id %char1%
- Sleep 155
- If PressX
- ControlSend,, {x}, ahk_id %char1%
- Sleep 155
- If Press9
- ControlSend,, {9}, ahk_id %char1%
- Sleep 255
- If PressTab
- ControlSend,, {Tab}, ahk_id %char1%
- Sleep 255
- If PressF
- ControlSend,, {f}, ahk_id %char1%
- Sleep 255
- }
- Else
- {
- Continue
- }
- }
Add Comment
Please, Sign In to add comment