Maintenance for the week of December 16:
• PC/Mac: No maintenance – December 16
• NA megaservers for patch maintenance – December 17, 4:00AM EST (9:00 UTC) - 12:00PM EST (17:00 UTC)
• EU megaservers for patch maintenance – December 17, 9:00 UTC (4:00AM EST) - 17:00 UTC (12:00PM EST)
The issues on the North American megaservers have been resolved at this time. If you continue to experience difficulties at login, please restart your client. Thank you for your patience!

[MAC] Launchers Launcher

Dormiglione
Dormiglione
✭✭
You might want to paste your ESO password? No problem, make your own launcher!

- On the Mac, press F4 and start to type "Automator", and select it.
- Choose "New document", then "Application".
- From the actions available, search for "applescript", choose "Run AppleScript" and drag it to the right panel.
- Paste the code below.
- Insert your password.
- Run (upper right button) for testing. If the ESO Launcher opens, everything is fine. If not, open the finder and get the path to the ESO Launcher and insert it into the script. Run again, until it works.
- Close the ESO Launcher.
- Save the Application, ideally in your workspace, because then other users on your computer have no quick access to your ESO account.
- Optionally, view an Application Information of your choice (⌘-I) click on the icon and copy (⌘-C). Then open your new Application Information, click the icon and paste (⌘-V). Your application has now a new icon!
- Run your newly created App. The Automator will ask you a one-time permission and you be a yes-man.
- Hit the "Play" button. At this point, the Automator wheel disappears from the status bar and your password is ready to paste.
- Enjoy!
on run {input, parameters}
	
	-- Launch game launcher
	
	tell application "Launcher" to activate
	
	-- Wait for ESO (Play)
	
	set myIDActive to false
	
	repeat while myIDActive is false
		tell application "System Events" to get name of every process
		if the result contains "eso" then
			set myIDActive to true
		end if
	end repeat
	
	repeat until application "eso" is running
		delay 1
	end repeat
	
	-- Set password to the clipboard
	
	set the clipboard to "your_password_here"

	return input
end run
Sign In or Register to comment.