world of warcraft player, Looking for Autofire

Ask gaming related questions
Perrito
Posts: 11
Joined: 12 Nov 2023, 19:51

Re: world of warcraft player, Looking for Autofire

Post by Perrito » 01 Dec 2023, 15:35

DuckingQuack wrote:
30 Nov 2023, 15:47
@Perrito
This script is a simplified version of Warlord's script but with the changes I suggested earlier included. Try this and we can test other stuff depending on how it goes. I included an exit button if things go crazy (F12). Keep this line the first time you run it for safety, but if you need F12 in-game, then delete that line. The hotkeys are only activated while scroll lock is toggled on, so make sure you use it.

Code: Select all

#Requires AutoHotkey v2.0
#SingleInstance Force
InstallKeybdHook
InstallMouseHook
SendMode("Event")
SetKeyDelay( 0, 250)

F12::ExitApp

#HotIf GetKeyState("ScrollLock", "T")
~$1:: {
    While GetKeyState("1", "P") {
    Send("{Blind}1")
    Sleep(50)
   }}

~$2:: {
    While GetKeyState("2", "P") {
    Send("{Blind}2")
    Sleep(50)
   }}

~$3:: {
    While GetKeyState("3", "P") {
    Send("{Blind}3")
    Sleep(50)
   }}

~$4:: {
    While GetKeyState("4", "P") {
    Send("{Blind}4")
    Sleep(50)
   }}

~$5:: {
    While GetKeyState("5", "P") {
    Send("{Blind}5")
    Sleep(50)
   }}

~$6:: {
    While GetKeyState("6", "P") {
    Send("{Blind}6")
    Sleep(50)
   }}
#HotIf
I must have another problem, this is doing nothing to me, i can clearly see the script running, when im in game or even outside i dont get any repetition of 1to 6. I must be doing something that i dont supose to be doing, scroll lock is on, heck i even have caps locks on. before it will get stuck while on forums any key from 1 to 6 now it doesnt do that, maybe i need to change that sleep 50 to 10 or something? the key delay to 20?

User avatar
DuckingQuack
Posts: 221
Joined: 20 Jan 2023, 18:20

Re: world of warcraft player, Looking for Autofire

Post by DuckingQuack » 01 Dec 2023, 23:11

@Perrito
I downloaded WOW just to test this script so I could get it working for you and it works fine for me. I don't think I can help you, sorry.
Best of Luck,
The Duck

Post Reply

Return to “Gaming”