Auto Scripts

Basic syntax:

Condition Operator Value {
	List of actions when condition is met
}

Condition Operator Value {
	List of actions when condition is met
} else {
	List of actions when condition is NOT met
}

Additionally, actions can be added outside of branches at the "top-level" to execute regardless of conditions:

Condition Operator Value {
	List of actions when condition is met
}

List of actions that execute regardless of conditions

Examples:

if ItemCount(3155) < 100 {
	StopTargeting()
	Goto("Refill")
} else {
	Goto("Continue")
}
if IsBlessed() == false {
	Say("!bless")
}
if HasCooldown("Ultimate Blood Rage") == false {
   Say("utito rai tempo")
}

List of available condition functions:

List of available action functions:


Revision #3
Created 19 August 2020 04:11:04 by Diath
Updated 17 January 2023 22:58:24 by Red