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

14 lines
425 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Function: GetOrigX(Spawn)
Description: Returns the original X coordinate of the specified spawns spawn point (where it was initially placed in the zone).
Parameters:
Spawn: Spawn The entity to query.
Returns: Float The X position of the spawns original location.
Example:
-- Example usage (see how far an NPC has moved from its spawn point on X axis)
local deltaX = math.abs(GetX(NPC) - GetOrigX(NPC))