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

354 B

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:

-- From ZoneScripts/BloodSkullValleyExcavationSite.lua
function player_entry(zone, player)
    SetFailureTimer(player)
end