Skip to content

A simple plugin to manage Warp points on your minecraft server.

Notifications You must be signed in to change notification settings

Bottle-M/SimpleWarpForked

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SimpleWarp-Forked

This is a forked version of SimpleWarp by @SomeBottle

SimpleWarp allows you to create, delete and use warp points. These points are some sort of landmarks for the players to teleport to.

The plugin also has a position saving feature. Positions are like warp points except that it's only used for showing a coordinate.

  • Position feature is disabled by default, it can be enabled in config file configs.yml .

Configs

configs.yml

op-full-access: false
delay-before-tp: 0
no-move-allowed-before-tp: false
position-system: false
player-warps-only: false
  • op-full-access - If this option is set to true, server operator will have full access to all available features of SimpleWarp.

    • Notice: Permission plugins such as GroupManager may have an identical option, in this case, op-full-access option might have no effect because it's overrided by the permission plugin.
  • delay-before-tp - The delay time in seconds before the teleportation start, with this option set with a value greater than 0, player will have to wait for the specific time before being teleported.

    • Notice: This can be bypassed if one has the permission simplewarp.warp.nodelay
  • no-move-allowed-before-tp - This option is valid when delay-before-tp > 0. If it's set to true, any movement from the player being teleported during the delay period will terminate the teleportation.

    • Notice: Can be bypassed with the permission simplewarp.warp.allowmove
  • position-system - Used to enable the /position feature.

  • player-warps-only - With this option enabled, players can only teleport to the warp points of their own.

Commands

  • /warp <warpname> - Teleport you to a warppoint.
  • /setwarp <warpname> - Create a warppoint.
  • /delwarp <warpname> - Delete a warppoint.
  • /warps - List all warppoints
  • /simplewarp <version | reload>
    • version - Displays current plugin version
    • reload - Reload all configs and warp/position data
  • /position <positionName | del | list>
    • positionName - Shows the coordinates of the position. If the position doesn't exist, the position will be set to your current location
    • del - Remove a position
    • list - Lists all available positions

Permissions

  • simplewarp.warp - Allows you to use the /warp command.
  • simplewarp.warp.nodelay - Allows you to ignore the delay before teleportation
  • simplewarp.warp.allowmove - Allows you to move while waiting to teleport
  • simplewarp.delwarp - Allows you to use the /delwarp command.
  • simplewarp.setwarp - Allows you to use the /setwarp command.
  • simplewarp.warps - Allows you to use the /warps command.
  • simplewarp.position - Allows you to use the /position command.
  • simplewarp.position.view - Allows you to use the /position <name> command.
  • simplewarp.position.create - Allows you to use the /position <name>
  • simplewarp.position.del - Allows you to use the /position del <name>
  • simplewarp.position.list - Allows you to use the /position list
  • simplewarp.reload - Allows you to reload all configs and warp/position data

To give the permissions to players you need a Permission System like LuckPerms or GroupManager.