1
0
EQ2Emu/docs/lua_functions/SetFailureTimer.md
2025-05-25 21:42:32 -04:00

19 lines
354 B
Markdown

### Function: SetFailureTimer(spawn)
**Description:**
Sets the failure timer on the Spawn for the current zone.
**Parameters:**
- `spawn` (Spawn) - Spawn object representing `spawn`.
**Returns:** None.
**Example:**
```lua
-- From ZoneScripts/BloodSkullValleyExcavationSite.lua
function player_entry(zone, player)
SetFailureTimer(player)
end
```