Advertisement
PiggiesGoSqueal

cheatprevention.yml

Jan 13th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.33 KB | None | 0 0
  1. # Cheat Prevention Configuration File
  2.  
  3. teleportation:
  4.  # Set this to true if players should be allowed to teleport during combat
  5.   # Default: false
  6.   allow during combat: true
  7.  
  8.   # If the above option is true, these types of teleports won't be blocked
  9.   # Valid Types can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/event/player/PlayerTeleportEvent.TeleportCause.html
  10.   # Default: false
  11.   allowed causes:
  12.  - ENDER_PEARL
  13.   - PLUGIN
  14.   - COMMAND
  15.   - CHORUS_FRUIT
  16.   # If the above option is true, set this to true to make enderpearls tag the player again
  17.   # Default: false
  18.   ender pearls restart timer: false
  19.  
  20. flight:
  21.  # Set this to true if players should be allowed to fly during combat
  22.   # Default: false
  23.   allow during combat: false
  24.  
  25.   # Set this to true if players should be allowed to use elytras
  26.   # Default: false
  27.   allow elytras: true
  28.  
  29.   # Set this to '' if you don't want to enable flight for anyone
  30.   # Set this to a permission if you want players to have flight enabled after combat
  31.   # Default: 'combatlogx.flight.enable'
  32.   enable permission: 'combatlogx.flight.enable'
  33.  
  34. gamemode:
  35.  # Set this to true if a player's gamemode should be changed when they are tagged
  36.   # Default: true
  37.   change: true
  38.  
  39.   # If the above option is true, what gamemode should the player be changed to?
  40.   # Valid Options: SURVIVAL, ADVENTURE, CREATIVE, SPECTATOR
  41.   # Default: SURVIVAL
  42.   gamemode: SURVIVAL
  43.  
  44. commands:
  45.  # Set this to true if the command list is not a blacklist
  46.   # Default: false
  47.   whitelist: true
  48.  
  49.   # This is a list of commands that will be blocked
  50.   # You must type the / or the command will not be blocked
  51.   # If a plugin does not register commands properly, they may not be blocked
  52.   # Make sure you also put command aliases here (such as /etp)
  53.   commands:
  54.  - spawn
  55.   - home
  56.   - home home
  57.   - home base
  58.   - home acro
  59.   - market
  60.   - warp market
  61.   - warp
  62.   - warps
  63.   - cmi rtp
  64.   - rtp
  65.   - warp spawn
  66.   - warp pvp
  67.   - warp help
  68.   - warp staff
  69.   - warp crates
  70.   - warp ResourceWorld
  71.   - warp BossWorld
  72.   - warp end
  73.   - warp jail
  74.   - warp wild
  75.   - warp potion
  76.   - warp market
  77.   - shop
  78.   - msg
  79.   - m
  80.   - r
  81.   - er
  82.   - cl
  83.   - bal
  84.   - balance
  85.   - excavation
  86.   - acrobatics
  87.   - alchemy
  88.   - archery
  89.   - axes
  90.   - fishing
  91.   - herbalism
  92.   - mining
  93.   - repair
  94.   - cmi repair
  95.   - swords
  96.   - taming
  97.   - unarmed
  98.   - bid
  99.   - back
  100.   - dback
  101.   - woodcutting
  102.   - cmi back
  103.   - cmi dback
  104.   - list
  105.   - seen
  106.   - who
  107.   - ebaltop
  108.   - baltop
  109.  
  110. potions:
  111.  # A list of potions that will be removed when a player is tagged
  112.   # Valid Options can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html
  113.   # Invalid effects will be ignored and may cause errors
  114.   # Set this to [] to disable potion blocking
  115.   # Example: "blocked potions: []"
  116.   blocked potions: []
  117.  
  118. inventories:
  119.  # Set this to true to close the inventory that the player has open when they are tagged
  120.   # For some reason the chat is counted as an inventory so that will also be closed
  121.   # Default: true
  122.   close on tag: false
  123.  
  124.   # Set this to true to prevent players from opening an inventory during combat
  125.   # Default: true
  126.   prevent opening: false
  127.  
  128. chat:
  129.  # Set this to true if players should be allowed to chat during combat
  130.   # Default: false
  131.   allow during combat: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement