Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Returns the state of Auto Loot.

state = GetAutoLootDefault();

Returns[]

state
Boolean - 1 if auto loot is enabled, nil if disabled.

Example[]

This toggles Auto Loot on and off when used in a macro spot.

/script if (GetAutoLootDefault()) then SetAutoLootDefault(false); message("Auto Loot is off."); else SetAutoLootDefault(true); print("Auto Loot is on."); end;

or (easier to change if the need arises)

/script local onOff = {["1"] = "on",["nil"] = "off"}; SetAutoLootDefault(not GetAutoLootDefault()); print("Auto Loot is "..onOff[tostring(GetAutoLootDefault())]..".");

Result

Pops up a window informing the user of the state of Auto Loot. Very useful for toggling Auto Loot on the fly.

Patch changes[]

Advertisement