Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;First, download and install AutoHotKey from here: http://ahkscript.org/
- ;Once that is installed, copy everything here into a text file and make the extension .ahk
- ;You can then double click it to run.
- ;
- ;This allows you to press Alt and the - on the NumPad to begin spamming your attack in slot 1.
- ;
- ;You only really need to copy everything below this line.
- ; The Secret World Constant Auto-Attack for farms
- #MaxThreadsPerHotkey 1
- #NoEnv
- SendMode Input
- #IfWinActive The Secret World
- ; Press Ctrl+Shift and the - on the Numpad to reload the script, halting the auto-attack.
- ^+NumpadSub::
- Reload
- ; AutoKill
- ; Press Alt and the - on the Numpad to start spamming your attack in slot 1.
- ; To stop, press the hotkey again.
- !NumpadSub::
- if AutoKill
- {
- AutoKill := false
- return
- }
- ; Otherwise:
- AutoKill := true
- Loop
- {
- Send {1 down}
- Sleep 2
- Send {1 Up}
- Sleep 2
- if not AutoKill
- break
- }
- AutoKill := false
- return
Advertisement
Add Comment
Please, Sign In to add comment