Advertisement
Guest User

rtp_cfg

a guest
Apr 16th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.88 KB | None | 0 0
  1. # BetterRTP plugin by SuperRonanCraft! (Join my Public Server at ronanplugins.com) #
  2. # Need help? go to https://ronanplugins.com/discord! #
  3.  
  4. Language-File: 'ru.yml'
  5.  
  6. Settings:
  7.   Respect:
  8.    ## Respect MinePlots plots (https://builtbybit.com/resources/mineplots.21646/)
  9.     MinePlots: false
  10.     ## Respect WorldGuard areas (https://dev.bukkit.org/projects/worldguard)
  11.     WorldGuard: false
  12.     ## Respect GriefPrevention areas (https://www.spigotmc.org/resources/griefprevention.1884/)
  13.     GriefPrevention: false
  14.     ## Respect Towny areas (https://www.spigotmc.org/resources/towny.72694/)
  15.     Towny: false
  16.     ## Respect RedProtect areas (https://www.spigotmc.org/resources/redprotect.15841/)
  17.     RedProtect: false
  18.     ## Respect FactionsUUID areas (https://www.spigotmc.org/resources/factionsuuid.1035/)
  19.     FactionsUUID: false
  20.     ## Respect Lands areas (https://www.spigotmc.org/resources/lands.53313/)
  21.     Lands: false
  22.     ## Respect Residence areas (https://www.spigotmc.org/resources/residence.11480/)
  23.     Residence: false
  24.     ## Respect KingdomsX areas (https://www.spigotmc.org/resources/kingdomsx.77670/)
  25.     KingdomsX: false
  26.     ## Respect hClaims areas (https://www.spigotmc.org/resources/hclaims.90540/)
  27.     hClaims: false
  28.     ## Respect GriefDefender areas (https://www.spigotmc.org/resources/griefdefender.68900/)
  29.     GriefDefender: false
  30.     ## Respect UltimateClaims areas (https://songoda.com/marketplace/product/ultimateclaims-the-ultimate-claiming-plugin.65)
  31.     UltimateClaims: false
  32.     ## Respect Pueblos regions (https://www.spigotmc.org/resources/pueblos.91255/) (My Favorite :D)
  33.     Pueblos: false
  34.     ## Respect SaberFactions areas (https://www.spigotmc.org/resources/saberfactions.69771/) (Added in 3.4.5)
  35.     SaberFactions: false
  36.     ## Respect HuskTowns areas (https://www.spigotmc.org/resources/husktowns.92672/) (Added in 3.4.5)
  37.     HuskTowns: false
  38.     ## Respect FactionsBridge compatible claims (https://www.spigotmc.org/resources/factionsbridge.89716/) (Added in 3.6.9)
  39.     FactionsBridge: false
  40.     ## Respect CrashClaim claims (https://www.spigotmc.org/resources/crashclaim-claiming-plugin.94037/) (Added in 3.6.9)
  41.     CrashClaim: false
  42.  
  43.   ## Output to console some debugging info
  44.   Debugger: false
  45.   ## Amount of chunks to preload around a safe location
  46.   PreloadRadius: 5
  47.   ## Maximum amount of tries before BetterRTP gives up and sends a NotSafeMessage #
  48.   MaxAttempts: 32
  49.   RtpOnFirstJoin: # Will execute as console to override delays
  50.     Enabled: false # Make the player rtp when joining the server for the first time
  51.     World: 'world' # World to first rtp in
  52.     SetAsRespawn: false # Save this first rtp as players new spawn point
  53.   Cooldown:
  54.     Enabled: true # Enabled or disabled cooldown timer
  55.     LockAfter: 0 # Lock the player in an infinite cooldown after # rtp's (0 to disable)
  56.     Time: 600 # in SECONDS
  57.     PerWorld: false #Cooldowns handled for each world? If disabled, player cannot rtp in another world until original cooldown has passed
  58.   ## Time between command and actually rtp'ing, time is in SECONDS. Set to "0" to disable delay timer #
  59.   Delay:
  60.     Enabled: true
  61.     Time: 5
  62.     CancelOnMove: true
  63.   Queue:
  64.     Enabled: true #Allows betterrtp to automatically queue up safe rtp locations prior to players executing `/rtp`
  65.   DisableUpdater: false
  66.   Logger:
  67.     Enabled: true #Log all things rtp related to the log.log file
  68.     LogToConsole: false
  69.     Format: 'yyyy-MM-dd HH:mm:ss'
  70.  
  71. Default:
  72.   UseWorldBorder: false
  73.   ## "Biomes: []" means all biomes are allowed! #
  74.   ## Biomes are optional, more biomes at https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/Biome.html #
  75.   Biomes: []
  76.   MaxRadius: 1000
  77.   MinRadius: 10
  78.   ## If "UseWorldBorder" is set to true above, Center X and Z will be ignored! #
  79.   CenterX: 0
  80.   CenterZ: 0
  81.   Shape: 'square'
  82.   MaxY: 320
  83.   MinY: 0
  84.   RTPOnDeath: false
  85.  
  86. ## Blocks BetterRTP will NOT teleport onto. More Blocks at: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html #
  87. BlacklistedBlocks:
  88.  - stationary_water
  89.   - stationary_lava
  90.   - water
  91.   - flowing_water
  92.   - lava
  93.   - flowing_lava
  94.   - cactus
  95.   - leaves
  96.   - leaves_2
  97.   - air
  98.   - void_air
  99.   - bedrock
  100.   - oak_leaves
  101.   - jungle_leaves
  102.   - kelp
  103.  
  104. ## Worlds to NOT allow /rtp in, unless there is an override to another enabled world #
  105. DisabledWorlds:
  106.  - arena
  107.   - prison
  108.   - creative
  109.  
  110. ## Worlds you want to have a custom min/max and spawn center in #
  111. ## [MaxRadius] and [MinRadius] MUST be positive! These cannot be equal to each other!
  112. CustomWorlds:
  113.   - world:
  114.       UseWorldBorder: false
  115.       MaxRadius: 1000
  116.       MinRadius: 5
  117.       CenterX: 0
  118.       CenterZ: 0
  119.       Price: 0
  120.       Shape: 'square'
  121.       MaxY: 320
  122.       MinY: 0
  123.       Cooldown: 60
  124.  
  125. ## Override a world and rtp a player executing the command in one world, to another
  126. Overrides:
  127.  #FORMAT - <CURRENT WORLD>:<DESIRED WORLD>
  128.   - master_world: 'world'
  129.   - creative_world: 'world'
  130.  
  131. WorldType: # Available types are NORMAL, NETHER
  132.   - world: NORMAL
  133.   - world_nether: NETHER
  134.   - world_the_end: NORMAL
  135.  
  136. PermissionGroup: #Player requires "betterrtp.group.<group_name>" to trigger these configs
  137.   Enabled: false
  138.   Groups:
  139.     - vip: # permission: betterrtp.group.vip
  140.         - Build_World: #World named "Build_World"
  141.             Priority: 0 #Lower the more prioritized
  142.             MaxRadius: 10000
  143.             MinRadius: 1000
  144.             Price: 100
  145.             Cooldown: 500 #optional
  146.         - Survival_World:
  147.             Priority: 10 #Higher the less prioritized
  148.             UseWorldBorder: false
  149.             MaxRadius: 5000
  150.             MinRadius: 1000
  151.             CenterX: 10
  152.             CenterZ: 10
  153.             Price: 10
  154.             MaxY: 320
  155.             MinY: 0
  156.     - vip2: # permission: betterrtp.group.vip2
  157.         - Build_World:
  158.             MaxRadius: 25000
  159.             MinRadius: 10000
  160.             Price: 15
  161.             Cooldown: 1500
  162.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement