• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Question - Autohotkey (1 Viewer)

snowshovel

New member
Joined
Dec 4, 2014
RedCents
78¢
Does anyone having a working autohotkey script for casting a spell over and over for skill ups? Also its for a TLP server if that matters. Thanks
 
INI:
#singleinstance force
#MaxThreadsPerHotkey 1

;this script will open AHK's key history
;press some keys and see if they appear in the window
;press F5 to refresh (to show recently pressed keys)
;#InstallKeybdHook
;#InstallMouseHook
;#KeyHistory 500 ;default 40, max 500
;KeyHistory

; Set window AlwaysonTop
#SPACE:: Winset, Alwaysontop, , A

;--------------------------------------------
F24::
    If (SpamSwitch := Not SpamSwitch) {
        SplashImage, c:\alert_small.png, B X2 Y55 , , , SpamAlert
        WinSet, TransColor, Black, SpamAlert
        SetTimer SpamLoopE, 500
        if WinActive("ahk_exe eqgame.exe") or WinActive("ahk_class _EverQuestwndclass")
            Send e
    } Else {
        SplashImage, Off
        SetTimer SpamLoopE, Off
    }
    Return

    SpamLoopE:
        if WinActive("ahk_exe eqgame.exe") or WinActive("ahk_class _EverQuestwndclass")
            Send e

Return

f24 to toggle it
repeating the e key, 500ms delay

Adjust to what you want.
 

Attachments

  • alert_small.png
    alert_small.png
    1.7 KB · Views: 3
There are a number of free auto-clicker programs you can download. I haven't needed one in awhile so can't remember what I used last time and reluctant to recommend any particular one, but you can find some pretty simple ones out there that will either hit a keyboard key over and over or click your mouse over and over at specific coordinates on your screen at whatever delay you pick.
 
Question - Autohotkey

Users who are viewing this thread

Back
Top