yes its in the docs but its easy this is what i did for nearest postal as an example
postalWpId = exports.sleepless_waypoints:create({
coords = coords3,
type = 'checkpoint',
color = '#ff00ff',
icon = 'location-dot',
label = label,
size = 1.0, -- makes it quiet large
drawDistance = 1800.0, -- how far it shows
displayDistance = true,
-- optional auto-remove distance:
removeDistance = (config and config.blip and config.blip.distToDelete) or nil,
})
Integrating 3D waypoints with nearest postal is a huge QoL improvement for players, especially for police or EMS roles. Definitely going to try implementing this on my server tonight.
Where do we add our own waypoints serverside to be seen at all times to mark something like a landmark? The documentation shows what code should be input but it doesn’t say where the code should be placed.