1
0
EQ2Emu/docs/lua_functions/GetOrigZ.md
2025-05-13 22:57:49 -04:00

425 B
Raw Blame History

Function: GetOrigZ(Spawn)

Description: Returns the original Z coordinate of where the spawn was initially placed.

Parameters:

Spawn: Spawn  The entity to check.

Returns: Float The Z position of the spawns original location.

Example:

-- Example usage (calculate how far NPC roamed from spawn point horizontally) local distanceFromSpawn = math.sqrt((GetX(NPC)-GetOrigX(NPC))^2 + (GetZ(NPC)-GetOrigZ(NPC))^2)