Coords
MSK.Coords.Show
Shows the player's current coordinates at the top of the screen
MSK.Coords.Show()
-- As an Export:
exports.msk_core:ShowCoords()
MSK.Coords.Active
Checks whether the current display of coordinates is active or not.
Returns
coordsActive - boolean
- whether the current display of coordinates is active or not
local coordsActive = MSK.Coords.Active()
-- As an Export:
local coordsActive = exports.msk_core:CoordsActive()
MSK.Coords.Hide
Hides the player's coordinates from the screen.
MSK.Coords.Hide()
-- As an Export:
exports.msk_core:HideCoords()
MSK.Coords.Copy
Copies the current player's coordinates to the clipboard
Parameters
coords - vector3, vector4 or table
- Coords to copy
MSK.Coords.Copy(coords)
-- As an Export:
exports.msk_core:CopyCoords(coords)
Last updated