Just curious if (and what type) of macros you guys use.
I only have one atm:
(Target nearest Friendly and assists them. Doesn't target Pets.)
/script TargetNearestFriend() if (not UnitIsPlayer("Target")) then TargetNearestFriend();end if (not UnitIsPlayer("Target")) then ClearTarget();end
/assist
I think it's kinda useful in the "heat of the battle" :p
So, anyone else wanna share their secret macros? ;)
{FSC}Godfather
02-01-2005, 03:50 PM
I really do not get why I have yet to see another rogue weapon switch.
Press ambush/backstab dagger comes out and goes back, bringing in the big hitting main hand only weapon for much better SS damage.
Bohica
02-01-2005, 03:54 PM
Is there a listing somewhere of all the available scripts/commands?
edit: /help and /macrohelp aren't really... much of a help.
addps4cat
02-01-2005, 04:43 PM
i have a wand autocast autoit script if anyone is interested. its great for preventing carpal tunnel syndrome
filsinger
02-01-2005, 06:18 PM
i have a wand autocast autoit script if anyone is interested. its great for preventing carpal tunnel syndrome
im very interested. Post link?
addps4cat
02-01-2005, 07:22 PM
I wrote it and I was planning to release it if anyone actually wanted it. I've been using it for like two weeks and it works pretty well. To use it you either have to compile it using AutoIt3.exe or download the AutoCast.exe and run it. I figure no one will run a random exe off the internet but here it is:
http://home.nycap.rr.com/addps4cat/AutoWand.exe -- Exe version --
If you don't trust me, just compile the script using the Aut2Exe.exe file in the zip
http://home.nycap.rr.com/addps4cat/AutoWand.au3 -- Script file--
http://www.hiddensoft.com/cgi-bin/getfile.pl?autoit3/autoit-v3.zip -- Autoit-v3 Install files --
Here's the low down and dirty of what it does:
Features
A global toggle so you can turn off detecting the ToggleWand key
Does not require WoW to be the active window
Super duper anti-hack detection
The default is that it will start pressing the key when you start the program (feature not a bug)
Will change the WoW window title to "SHOOTING" while autocasting wand
The default keys are "1" to toggle casting, "End" to toggle detection of "1", and "Del" to close the script program. The shoot key should be bound to "\".
; AutoWand by addps4cat
; Based off HotKeySet example script from AutoIt help file
;
; Features
; A global toggle so you can turn off detecting the ToggleWand key
; Does not require WoW to be the active window
; Super duper anti-hack detection
; The default is that it will start pressing the key when you start the program (feature not a bug)
; Will change the WoW window title to "SHOOTING" while autocasting wand
; See comments at bottom for key usage notes
; Last update 2:54 PM 1/22/2005
; v0.2
;
; ------------- SET YOUR KEYS HERE -------------
Global $WoWShootKey = "\" ; key your Shoot should be bound to
Global $AutoWandKey = "1" ; key to toggle autocast wand, cannot be a single key of a-z or A-Z. At least one Alt, Ctrl, or Win modifier is required with these keys.
Global $GlobalToggleKey = "{END}" ; key to shut off detection of the ToggleWand key, cannot be a single key of a-z or A-Z. At least one Alt, Ctrl, or Win modifier is required with these keys.
Global $TerminateKey = "{DEL}" ; key to terminate the program, cannot be a single key of a-z or A-Z. At least one Alt, Ctrl, or Win modifier is required with these keys.
; ------------- DO NOT EDIT BELOW THIS LINE -------------
Global $Paused ; default value is zero for undeclared variables
Global $GlobalPaused
HotKeySet($AutoWandKey, "ToggleWand")
HotKeySet($GlobalToggleKe y, "GlobalToggle")
HotKeySet($TerminateKey, "Terminate")
; Body
While 1
sleep(100)
WEnd
; End Body
Func ToggleWand()
$Paused = NOT $Paused
If $Paused Then
WinSetTitle("World of Warcraft", "", "SHOOTING")
Else
WinSetTitle("SHOOTING", "", "World of Warcraft")
EndIf
While $Paused
ControlSend("SHOOTING", "", "", $WoWShootKey)
Sleep(200 + Random(100)) ; Super duper anti-hack detection WEnd
Wend
EndFunc
Func GlobalToggle()
$GlobalPaused = NOT $GlobalPaused
If $GlobalPaused Then
HotKeySet($AutoWandKey) ;unregister hotkey
Else
HotKeySet($AutoWandKey, "ToggleWand") ;register it again
EndIf
EndFunc
Func Terminate()
Exit 0
EndFunc
#comments-start
Single keys of a-z or A-Z. At least one Alt, Ctrl, or Win modifier is required with these keys.
Ctrl+Alt+Delete It is reserved by Windows
F12 It is also reserved by Windows, according to its API.
NumPad's Enter Key Instead, use {Enter} which captures both Enter keys on the keyboard.
Win+B,D,E,F,L,M,R,U; and Win+Shift+M These are built-in Windows shortcuts. Note: Win+B and Win+L might only be reserved on Windows XP and above.
Alt, Ctrl, Shift, Win These are the modifier keys themselves!
Other Any global hotkeys a user has defined using third-party software, any combos of two or more "base keys" such as '{F1}{F2}', and any keys of the form '{LALT}' or '{ALTDOWN}'.
Send Command (if zero flag) Resulting Keypress
{!} !
{#} #
{+} +
{^} ^
{{} {
{}} }
{SPACE} SPACE
{ENTER} ENTER key on the main keyboard
{ALT} ALT
{BACKSPACE} or {BS} BACKSPACE
{DELETE} or {DEL} DELETE
{UP} Cursor up
{DOWN} Cursor down
{LEFT} Cursor left
{RIGHT} Cursor right
{HOME} HOME
{END} END
{ESCAPE} or {ESC} ESCAPE
{INSERT} or {INS} INS
{PGUP} PageUp
{PGDN} PageDown
{F1} - {F12} Function keys
{TAB} TAB
{PRINTSCREEN} Print Screen key
{LWIN} Left Windows key
{RWIN} Right Windows key
{NUMLOCK on} NUMLOCK (on/off/toggle)
{CAPSLOCK off} CAPSLOCK (on/off/toggle)
{SCROLLLOCK toggle} SCROLLLOCK (on/off/toggle)
{CTRLBREAK} Ctrl+Break
{PAUSE} PAUSE
{NUMPAD0} - {NUMPAD9} Numpad digits
{NUMPADMULT} Numpad Multiply
{NUMPADADD} Numpad Add
{NUMPADSUB} Numpad Subtract
{NUMPADDIV} Numpad Divide
{NUMPADDOT} Numpad period
{NUMPADENTER} Enter key on the numpad
{APPSKEY} Windows App key
{LALT} Left ALT key
{RALT} Right ALT key
{LCTRL} Left CTRL key
{RCTRL} Right CTRL key
{LSHIFT} Left Shift key
{RSHIFT} Right Shift key
{SLEEP} Computer SLEEP key
{ALTDOWN} Holds the ALT key down until {ALTUP} is sent
{SHIFTDOWN} Holds the SHIFT key down until {SHIFTUP} is sent
{CTRLDOWN} Holds the CTRL key down until {CTRLUP} is sent
{LWINDOWN} Holds the left Windows key down until {LWINUP} is sent
{RWINDOWN} Holds the right Windows key down until {RWINUP} is sent
{ASC nnnn} Send the ALT+nnnn key combination
{BROWSER_BACK} 2000/XP Only: Select the browser "back" button
{BROWSER_FORWARD} 2000/XP Only: Select the browser "forward" button
{BROWSER_REFRESH} 2000/XP Only: Select the browser "refresh" button
{BROWSER_STOP} 2000/XP Only: Select the browser "stop" button
{BROWSER_SEARCH} 2000/XP Only: Select the browser "search" button
{BROWSER_FAVORITES} 2000/XP Only: Select the browser "favorites" button
{BROWSER_HOME} 2000/XP Only: Launch the browser and go to the home page
{VOLUME_MUTE} 2000/XP Only: Mute the volume
{VOLUME_DOWN} 2000/XP Only: Reduce the volume
{VOLUME_UP} 2000/XP Only: Increase the volume
{MEDIA_NEXT} 2000/XP Only: Select next track in media player
{MEDIA_PREV} 2000/XP Only: Select previous track in media player
{MEDIA_STOP} 2000/XP Only: Stop media player
{MEDIA_PLAY_PAUSE} 2000/XP Only: Play/pause media player
{LAUNCH_MAIL} 2000/XP Only: Launch the email application
{LAUNCH_MEDIA} 2000/XP Only: Launch media player
{LAUNCH_APP1} 2000/XP Only: Launch user app1
{LAUNCH_APP2} 2000/XP Only: Launch user app2
#comments-end
Feannag
02-02-2005, 11:11 AM
Barring Cosmos I only use a couple of addons but no macros.
I found MobHealth, SellValue and ReagentWatch to be particularly useful. SellValue especially when you want to remember which vendor trash is more valuable.
I assume wand firing is similar to non-hunter ranged in that it has a cooldown and you have to keep pressing it?