1
0
EQ2Emu/docs/lua_functions/ClearRunningLocations.md
2025-05-27 09:56:36 -04:00

21 lines
406 B
Markdown

### Function: ClearRunningLocations(spawn)
**Description:**
Removes all the running locations on the Spawn.
**Parameters:**
- `spawn` (Spawn) - Spawn object representing `spawn`.
**Returns:** None.
**Example:**
```lua
-- From SpawnScripts/FarJourneyFreeport/agoblin.lua
function run_around_loop_init_pause(NPC)
ClearRunningLocations(NPC)
AddTimer(NPC, 700, "run_around_loop_init_continue")
end
```