N.checkpoint — ServerCheckpoint Creator
`N.checkpoint` is a powerful, structured system for creating and managing checkpoints on the server. Each checkpoint is registered inside `N.checkpoint.list`, allowing you to track, remove, or modif
const jobStart = N.checkpoint.create({
id: "job_start",
pos: { x: 215.5, y: -810.2, z: 30.7 },
color: [0, 255, 0, 150],
radius: 2.0,
dimension: 0,
once: false,
cooldown: 5000, // 5s per-player cooldown
onEnter: (player) => {
player.notify("🦺 Press E to start your job!");
},
onExit: (player) => {
player.notify("👋 You left the job zone.");
}
});⚙️ Parameters
Option
Type
Default
Description
🧠 How It Works
🧱 Internal Structure
📘 Notes
PreviousN.auto.load — Server Automatic JSON LoaderNextN.event (Client) — Universal Client Event Handler
Last updated