S-PlayerWarps 图标

S-PlayerWarps

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 1.1
本资源为搬运资源,原资源地址: https://modrinth.com/mod/s-playerwarps
资源信息

Minecraft 版本: 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2 26.2

平台: paper

标签: management social utility

资源介绍

Overview

S-PlayerWarps is a simple Paper plugin that lets players create personal warps and teleport to them.

Features

  • Reload the plugin directly in-game.
  • Teleport with optional delay and cancel-on-move.
  • Customizable messages (english.yml & german.yml, you can add more).
  • Sound effects for teleportation events.
  • Cancel teleportation due to movement.
  • Configurable GUIs.
  • Customizable player warps (displayname, material).
  • Tracking visits and unique visits.
  • More features in development ...

Commands

  • /s-playerwarps about - Receive information about the plugin (name, version & author).
  • /s-playerwarps reload - Reload the plugin to update config files.
  • /playerwarp - Opens the menu if the player has permission, else it will show the usage message.
  • /playerwarp menu - Opens the playerwarps menu.
  • /playerwarp create - Creates a playerwarp with the given identifier.
  • /playerwarp teleport - Teleports to the givien playerwarp.
  • /playerwarp delete - Deletes the given playerwarp.
  • /playerwarp edit displayname - Changes the displayname of the given warp.
  • /playerwarp edit icon - Changes the icon of the given warp.

Permissions

  • s-playerwarps.admin.about = Allows access to the about command.
  • s-playerwarps.admin.reload = Allows access to the reload command.
  • s-playerwarps.admin.notifyUpdate = Allows receiving update notifications.
    Player Permissions
  • s-playerwarps.commands.playerwarp.use = Allows access to the playerwarp command.
  • s-playerwarps.commands.playerwarp.help = Allows access to the help command.
  • s-playerwarps.commands.playerwarp.create = Allows creating player warps.
  • s-playerwarps.commands.playerwarp.teleport = Allows teleporting to player warps.
  • s-playerwarps.commands.playerwarp.menu = Allows opening the player warps menu.
  • s-playerwarps.commands.playerwarp.delete = Allows deleting playerwarps.
  • s-playerwarps.commands.playerwarp.edit = Allows editing playerwarps.

Documentation

GitBook docu: Link

Configs

View config.yml ```yml # This plugin utilizes MiniMessage for messages. # For more information, visit https://docs.adventure.kyori.net/minimessage.html file-version: 1 # The prefix before every message prefix: "S-PlayerWarps ⚡ " # The messages file to use langFile: 'english' # Settings for the update checker updateChecker: # Send a message to the console when a new version is available consoleMessage: true # Send a message to the player when a new version is available # This requires the permission 's-playerwarps.admin.notifyUpdate' or to be an OP playerMessage: true # Settings for data saving saving: # Whether to save player warps asynchronously async: true # The delay between autosaves in seconds # [ Default = 1200 (20 minutes) ] delay: 1200 # Settings for all sounds sounds: teleportSound: # Whether to play a sound when teleporting enabled: true # The sound to play when teleporting sound: 'ENTITY.ENDERMAN.TELEPORT' # The volume of the sound volume: 1.0 # The pitch of the sound pitch: 1.0 delaySound: # Whether to play a sound during the teleportation delay enabled: true # The sound to play during the teleportation delay sound: 'BLOCK.NOTE_BLOCK.BASS' # The volume of the sound volume: 1.0 # The pitch of the sound pitch: 1.0 cancelSound: # Whether to play a sound if the teleportation is canceled enabled: true # The sound to play if the teleportation is canceled sound: 'ENTITY.VILLAGER.NO' # The volume of the sound volume: 1.0 # The pitch of the sound pitch: 1.0 # Settings for player warps playerwarps: # The maximum amount of player warps a player can create # Set to 0 to make permission based (max. 100) | Set to -1 for unlimited # Permission: s-playerwarps.limit. maxWarpsPerPlayer: 5 # The default icon for player warps (Material name) defaultWarpIcon: 'COMPASS' # The maximum length for warp display names displayNameMaxLength: 40 # Settings for warp identifiers # I would recommend to NOT change these settings unless you know what you're doing; This does not effect the display name identifier: # The regex pattern that warp identifiers must match regex: '^[A-Za-z0-9_]+$' # The minimum length for warp identifiers minLength: 4 # The maximum length for warp identifiers maxLength: 16 # Settings for teleportation teleportation: # The delay before teleporting (in seconds) delay: # Whether to enable a delay before teleporting enabled: true # The length of the delay in seconds delay: 3 # Whether to cancel the teleportation if the player moves cancelOnMove: true ``` View english.yml ```yml # This plugin utilizes MiniMessage for messages. # For more information, visit https://docs.adventure.kyori.net/minimessage.html file-version: 2 # General messages general: noPlayer: "You must be a player to execute this command!" noPerms: "You do not have permission to execute this command!" playerNotFound: "The given player could not be found!" # Other messages other: updateChecker: "An update is available! You are using version v%current-version%, the latest version is %latest-version%!" # Command messages commands: # Messages for the /s-playerwarps command (main plugin command) s-playerwarps: usage: "Please use /s-playerwarps !" about: "S-PlayerWarps v%version% - %authors%" reload: reloading: "Reloading S-PlayerWarps..." success: "Successfully reloaded S-PlayerWarps! (%time%ms)" error: "An error occurred while reloading S-PlayerWarps! Check the console for details." # Messages for the /playerwarp command playerwarp: usage: "Please use /playerwarp !" create: success: "The player warp %warp% has successfully been created!" alreadyExists: "A player warp with the identifier %warp% already exists!" identifierRegex: "The warp identifier %warp% contains invalid characters! Please use only letters, numbers and underscores." identifierLength: "The warp identifier %warp% is too long or too short! Please use a identifier between 4 and 16 characters long." maxWarpsReached: "You have reached the maximum amount of player warps you can create!" teleport: teleporting: "Teleportation starting ..." success: "You have been teleported to player warp %warp%!" notFound: "The player warp %warp% could not be found!" canceled: "Teleportation canceled due to movement!" delete: success: "The player warp %warp% has been successfully deleted!" notFound: "The player warp %warp% could not be found!" notOwner: "You do not own the player warp %warp%!" edit: notFound: "The player warp %warp% could not be found!" notOwner: "You do not own the player warp %warp%!" displayNameSuccess: "The display name of player warp %warp% has been changed to %displayname%!" displayNameTooLong: "The display name is too long! Maximum length is %max% characters." iconSuccess: "The icon of player warp %warp% has been changed to %material%!" invalidMaterial: "The material %material% is invalid! Please use a valid Minecraft material name." # Dialog texts dialogs: displayname: title: "Change Displayname" texts: - "Enter a new displayname for your player warp:" buttons: confirm: "Confirm" cancel: "Cancel" delete: title: "Delete Player-Warp" texts: - "Are you sure?" - "This action cannot be undone." buttons: confirm: "Confirm" cancel: "Cancel" icon: title: "Change Icon" texts: - "Enter the name of the material you want to use for your player warp (e.g. 'Oak Log'):" buttons: confirm: "Confirm" cancel: "Cancel" messages: invalidMaterial: "The material you entered is invalid! Please enter a valid material name." create: title: "Create Player-Warp" texts: - "Enter a unique identifier for your new player warp:" - "Note: The identifier may only contain letters, numbers and underscores and must be between 4 and 16 characters long." buttons: confirm: "Confirm" cancel: "Cancel" ``` View german.yml ```yml # This plugin utilizes MiniMessage for messages. # For more information, visit https://docs.adventure.kyori.net/minimessage.html file-version: 2 # Generelle Nachrichten general: noPlayer: "Dies können nur Spieler ausführen!" noPerms: "Du hast keine Berechtigung für diesen Befehl!" playerNotFound: "Der angegebene Spieler konnte nicht gefunden werden!" # Other messages other: updateChecker: "Es ist ein Update verfügbar! Die momentane Version ist die v%current-version%, die neuste Version ist die %latest-version%!" # Befehlsnachrichten commands: # Nachrichten für den /s-playerwarps Befehl (Hauptbefehl des Plugins) s-playerwarps: usage: "Bitte nutze /s-playerwarps !" about: "S-PlayerWarps v%version% - %authors%" reload: reloading: "S-PlayerWarps wird neugeladen..." success: "S-PlayerWarps wurde erfolgreich neugeladen! (%time%ms)" error: "Fehler beim Neuladen von S-PlayerWarps! Überprüfe die Konsole für Details." playerwarp: usage: "Bitte nutze /playerwarp !" create: success: "Der Spieler-Warp %warp% wurde erfolgreich erstellt!" alreadyExists: "Ein Spieler-Warp mit der ID %warp% existiert bereits!" identifierRegex: "Die Warp-ID %warp% enthält ungültige Zeichen! Bitte nutze nur Buchstaben, Zahlen und Unterstriche." identifierLength: "Die Warp-ID %warp% ist zu lang oder zu kurz! Bitte nutze eine ID mit einer Zeichenlänge zwischen 4 und 16." maxWarpsReached: "Du hast die maximale Anzahl an Spieler-Warps erreicht, die du erstellen kannst!" teleport: teleporting: "Teleportation wird gestartet ..." success: "Du wurdest zum Spieler-Warp %warp% teleportiert!" notFound: "Der Spieler-Warp %warp% konnte nicht gefunden werden!" canceled: "Die Teleportation wurde aufgrund von Bewegung abgebrochen!" delete: success: "Der Spieler-Warp %warp% wurde erfolgreich gelöscht!" notFound: "Der Spieler-Warp %warp% konnte nicht gefunden werden!" notOwner: "Du besitzt nicht den Spieler-Warp %warp%!" edit: notFound: "Der Spieler-Warp %warp% konnte nicht gefunden werden!" notOwner: "Du besitzt nicht den Spieler-Warp %warp%!" displayNameSuccess: "Der Anzeigename des Spieler-Warps %warp% wurde zu %displayname% geändert!" displayNameTooLong: "Der Anzeigename ist zu lang! Die maximale Länge ist %max% Zeichen." iconSuccess: "Das Icon des Spieler-Warps %warp% wurde zu %material% geändert!" invalidMaterial: "Das Material %material% ist ungültig! Bitte nutze einen gültigen Minecraft-Material-Namen." # Dialog texts dialogs: displayname: title: "Anzeigenamen ändern" texts: - "Gib einen neuen Anzeigenamen für deinen Spieler-Warp ein:" buttons: confirm: "Bestätigen" cancel: "Abbrechen" delete: title: "Spieler-Warp löschen" texts: - "Bist du sicher?" - "Diese Aktion kann nicht rückgängig gemacht werden." buttons: confirm: "Bestätigen" cancel: "Abbrechen" icon: title: "Icon ändern" texts: - "Gib den Namen des Materials (auf Englisch) ein, welches du für dein Spieler-Warp verwenden möchtest (z.B. 'Oak Log'):" buttons: confirm: "Bestätigen" cancel: "Abbrechen" create: title: "Spieler-Warp erstellen" texts: - "Gib den Identifier für deinen neuen Spieler-Warp ein:" - "Hinweis: Der Identifier darf nur Buchstaben, Zahlen und Unterstriche enthalten und muss zwischen 4 und 16 Zeichen lang sein." buttons: confirm: "Bestätigen" cancel: "Abbrechen" ```

Contact

If you encounter any issues or bugs, or have a
request for a new feature, please contact me via Discord or join my Discord-Server.

My discord-name is Losterixx.

My Discord-Server: Link

下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
Fel's Machine Guns WWI

价格:0 墨喵币
下载量:0

查看详情
Enderman Death Silence

价格:0 墨喵币
下载量:0

查看详情
Witch's Archive: Ray

价格:0 墨喵币
下载量:0

查看详情
ModernIndev

价格:0 墨喵币
下载量:0

查看详情