landsandboat/scripts/items/pendant_compass.lua

18 lines
427 B
Lua

-----------------------------------
-- ID: 16285
-- Pendant compass
-- Use to determine your precise location in Vana'diel.
-- Provides exact X, Y and Z location, where Y is the altitude.
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return 0
end
itemObject.onItemUse = function(target)
target:showPosition()
end
return itemObject