so I know how to get my in game position but is there a way to get the top, bottom , left and right positions for the maps since none of the map tools here seem to like me at all just get blank screen when I open them
function get_lc()
local x = gv("x")
local y = gv("y")
_x = x - math.floor(x / 16128) * 16128
_y = y - math.floor(y / 16128) * 16128
message (_x .. ", " .. _y)
end