AC2 Simple Vitae Heal Bot script
From Asheron's Call 2
1. Download and install autoit
2. In-game setup prerequisites
- Set shortcut 1 to your Vitae Heal skill
⇒TIP - The esc key will stop the script
Vitae Heal Script source code is below this line (copy/paste)
#cs ---------------------------------------------------------------------------- Created by anonymous v1.0 What it Does: Vheals Closest Person Esc - Quits Macro #ce ---------------------------------------------------------------------------- ; set the hotkeys HotKeySet("{esc}", "quit") ; mane loop while 1 ; make ac2 active If ProcessExists("AC2client.exe") Then WinActivate("Asheron") Else MsgBox(0, @ScriptName, 'AC2 Is not running') Exit 1 EndIf Sleep(2000) Send ("^[") Sleep(1000) Send("1") Sleep(13000) WEnd ; Function to exit the script Func quit() Exit 0 EndFunc