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)