Config

CreativeMonitor

Config.yml

This is how your config should look when it is loaded by your system.

### CreativeMonitor ###
#
#
### Config.yml ###


activeworlds:
    - world
    - world_nether
    - world_the_end
    - skyworld
message:
    enabled: true
    prefix: '&5[CreativeMonitor]'
    message: '&eSorry, you cannot do this in Creative!'
    switch:
        enabled: true
        message: '&eSwitching to Survival... Clearing Inventory!'
blockProtection:
    enabled: true
pluginSupport:
    BetterEnderChest: true
    BookshelfGUI: true
blockedCommands:
    - 'sell'
blockedItems:
    blockedPlacements: 52
    blockInteractions: 54, 146, 61, 62, 130, 23, 158, 154
    entityInteractions: 342, 408, 389
    otherInteractions: 383, 373, 327, 385, 384, 397, 381

Config.yml explained

Here, each section of the config.yml has been commented to give you an explanation of what it does for you.

### CreativeMonitor ###
#
#
### Config.yml ###

#activeworlds is a list of worlds you want the plugin to be active in. By default these four are here however you can change them if need be.
activeworlds:
    - world
    - world_nether
    - world_the_end
    - skyworld

#This section is about messages that are displayed when a player tries to do something they cannot.
message:
    enabled: true #If you want to use the messages
    prefix: '&5[CreativeMonitor]' #The part before each message from the plugin.
    message: '&eSorry, you cannot do this in Creative!' #The error message for players trying to do something they are not allowed to.
    switch: #Whether a players inventory is cleared upon switching to survival
        enabled: true
        message: '&eSwitching to Survival... Clearing Inventory!'
#Whether blocks placed placed by creative players are protected.
blockProtection:
    enabled: true
#Here is a list of plugins that CreativeMonitor can support. Most will be true by default.
pluginSupport:
    BetterEnderChest: true
    BookshelfGUI: true

#This section is for commands you do not want a player to be able to execute.
#You can make it as specific as 'give minecraft 1 35 12' or as vague as 'sell'
#If you use 'sell' it will block any command sent with /sell before it.
#If you use 'sell hand' it will block any command with /sell hand before it.
blockedCommands:
    - 'sell'
    - 'other command in detail'

#Here are all the items that are blocked for creative players. Items MUST be separated by a ", ". 
#Note: May soon merge some sections.
#  " : This section can be buggy at times please report any issue ASAP! Thank you. 
blockedItems:
    #List of blocks the player cannot place (Does not currently support Entities)
    blockedPlacements: 52
    #List of blocks the player cannot use.
    blockInteractions: 54, 146, 61, 62, 130, 23, 158, 154
    #List of entities the player cannot use.
    entityInteractions: 342, 408, 389
    #List of items (not blocks or physical entities i.e potions/spawn eggs) the player cannot use.
    otherInteractions: 383, 373, 327, 385, 384, 397, 381

Comments

Posts Quoted:
Reply
Clear All Quotes