Skip to content
home/templates/warp system (/warp /setwarp /delwarp)
commandsBeginnernewmc 1.20.x – 1.21.x29 lines

warp system (/warp /setwarp /delwarp)

admins set named warp points; players teleport to them. warp locations persist across reloads.

vanilla Skriptno addons required.
warp-system.sk29 lines
command /setwarp <text>:
    permission: warp.admin
    trigger:
        set {warp.%arg-1%} to location of player
        send "&aWarp &e%arg-1% &aset to your location." to player

command /delwarp <text>:
    permission: warp.admin
    trigger:
        if {warp.%arg-1%} is not set:
            send "&cNo warp named &e%arg-1%&c." to player
            stop
        delete {warp.%arg-1%}
        send "&aDeleted warp &e%arg-1%&a." to player

command /warp <text>:
    trigger:
        if {warp.%arg-1%} is not set:
            send "&cNo warp named &e%arg-1%&c." to player
            stop
        teleport player to {warp.%arg-1%}
        send "&aTeleported to &e%arg-1%&a." to player

command /warps:
    trigger:
        send "&eAvailable warps:" to player
        loop {warp.*}:
            send "&8- &f%loop-index%" to player

get it running

warp-system.sk · 29 lines · vanilla Skript
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    warp-system.sk· ready to drop in
  2. 2

    drop it in your scripts folder

    save it exactly here on your server — no typos, just copy the path:

    …/plugins/Skript/scripts/warp-system.sk
  3. 3

    reload in-game

    run this in chat or console — your script goes live instantly:

    /sk reload warp-system
that's it — your script is live. hop in-game to try it.
/ related templates

more commands templates

comments