Skip to content
home/templates/backpack (/bp) — virtual ender chest
utilityBeginnernewmc 1.20.x – 1.21.x14 lines

backpack (/bp) — virtual ender chest

players open a private 27-slot inventory accessible from anywhere. contents persist across logouts and worlds.

required addons — install before reloading
  • download skBeeAdds scoreboards, hologram text, and other things Skript can't do on its own.
Drop each .jar into your plugins/ folder, then restart your server.
backpack.sk14 lines
command /bp:
    aliases: /backpack
    trigger:
        if {bp.%uuid of player%} is not set:
            set {bp.%uuid of player%} to chest inventory with 3 rows named "&8Backpack — %player%"
        open {bp.%uuid of player%} to player

on inventory close:
    # Persist on close — the player's backpack inventory variable already
    # references the same Inventory object, so changes were saved live. This
    # is just a confirmation.
    if name of event-inventory starts with "&8Backpack":
        send "&8Backpack saved." to player

get it running

backpack.sk · 14 lines · needs skBee
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    backpack.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/backpack.sk
  3. 3

    reload in-game

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

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

more utility templates

comments