I wrote this very simple script to start WoW, input your password and take you straight to the character screen automaticaly.
First you need to open Script Editor in HD (hard drive) -> Applications -> AppleScript -> Script Editor
Paste the code into the Untitled script, replacing "passwordhere" with your password. Save the script as an Application (file format -> application), with the run only box checked.
Enjoy!
This IS allowed by Blizzard
First you need to open Script Editor in HD (hard drive) -> Applications -> AppleScript -> Script Editor
Paste the code into the Untitled script, replacing "passwordhere" with your password. Save the script as an Application (file format -> application), with the run only box checked.
Enjoy!
Code:
set CR to ASCII character of 13
tell application "System Events"
tell application "World of Warcraft" to activate
keystroke "passwordhere" & CR
end tell
This IS allowed by Blizzard