What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Need help with Autohotkey please how do i ad this to an rotation

Mario27

New Member
Joined
Jan 15, 2010
Messages
6,336
now this wil spam spels with a single key pres


#ifWinActive World of Warcraft
#MaxHotkeysPerInterval 100000000
{
$1::
Loop
{
if not GetKeyState("1", "P")
break
Send 123456789
}
return
}

but i want it so it uses exorcism only on proc etc how could i add those things?
 
This has nothing to with HB.
Autohotkey is only a program which sends Keys to an active window, it can't read anything wow realted from memory

AutoHotkey is a free, open-source utility for Windows. With it, you can:

Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.
Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.
Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".
Create custom data-entry forms, user interfaces, and menu bars. See GUI for details.
Remap keys and buttons on your keyboard, joystick, and mouse.
Respond to signals from hand-held remote controls via the WinLIRC client script.
Run existing AutoIt v2 scripts and enhance them with new capabilities.
Convert any script into an EXE file that can be run on computers that don't have AutoHotkey installed.
if u want it to read something from WoW u have to code lots of stuff
 
now this wil spam spels with a single key pres


#ifWinActive World of Warcraft
#MaxHotkeysPerInterval 100000000
{
$1::
Loop
{
if not GetKeyState("1", "P")
break
Send 123456789
}
return
}

but i want it so it uses exorcism only on proc etc how could i add those things?

2000+ posts, not sure if troll...
 
im not a troll im trying out to figure how i could get it working with global cooldowns so it only uses those on proc. this spamms all spells even excorcism without proc but i want it so it cast exorcism on proc and hammer of wrath etc.
 
But this is the HB forums, not Autohotkey. As Stormchasing said, Autohotkey literally just emulates key presses, it has no idea what it's sending them too. To do what your saying you need to build a CC for HB, or maybe PQRotation.
 
Back
Top