buddem/pos/pos.lua

12 lines
267 B
Lua

RegisterCommand('pos', function(source, args)
-- get coordinates
local ped = PlayerPedId()
local pos = GetEntityCoords(ped)
-- tell coordinates
TriggerEvent('chat:addMessage', {
args = { pos.x .. "\n" .. pos.y.. "\n" .. pos.z }
})
end, false)