Facebook
From Ick, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 283
  1. # This config option won't do anything
  2. # Its just here to provide information
  3. generated-by-version: "9.9.0.0"
  4.  
  5. # Config Options for CombatLogX
  6. options:
  7.   # Set this to true to see more information in console
  8.   # You don't need to use this unless you like spam
  9.   # Default: false
  10.   debug: false
  11.  
  12.   # Set this to true if you want to check for updates
  13.   # This will not automatically download them
  14.   # Default: true
  15.   check for updates: true
  16.  
  17.   # Add worlds to this list if you do not want players to be tagged in them
  18.   disabled worlds:
  19.   - "world1"
  20.   - "world2"
  21.  
  22.   broadcasts:
  23.     # Set this to true if you want to broadcast a message when the plugin is enabled.
  24.     # Default: true
  25.     on enable: true
  26.  
  27.     # Set this to true if you want to broadcast a message when the plugin is disabled.
  28.     # Default: true
  29.     on disable: true
  30.  
  31.   # The amount of time (in seconds) that players will be tagged before they can log out.
  32.   # If they leave before this time ends, they will be punished.
  33.   # Default: 30
  34.   time: 30
  35.  
  36.   link:
  37.     # Set this to true to link arrows, potions, snowballs, eggs, and other projectiles to the entity that shot them
  38.     # This will only link the shooter if they are the attacker
  39.     # Default: true
  40.     projectiles: true
  41.  
  42.     # Set this to true to link wolves, ocelots, parrots, and other pets to the entity that owns them
  43.     # This will only link the owner if their pet is the attacker
  44.     # Default: true
  45.     pets: true
  46.  
  47. # Punishment options for CombatLogX
  48. punish:
  49.   # Set this to true if players should be punished when they log out during combat
  50.   # Default: true
  51.   on quit: true
  52.  
  53.   # Set this to true if players should be punished when they get kicked by a plugin or staff member during combat
  54.   # Default: false
  55.   on kick: false
  56.  
  57.   # Set this to true if players should be punished when their combat timer expires
  58.   # You should never need this option but its here for debugging purposes
  59.   # Default: false
  60.   on expire: false
  61.  
  62.   # Set this to true if players should be killed when they are punished
  63.   # Default: true
  64.   kill: true
  65.  
  66.   sudo:
  67.     # Set this to true if players/console should run commands when a player is punished
  68.     # Default: false
  69.     enabled: false
  70.  
  71.     # List of commands if the above option is set to true
  72.     # Prefix with [CONSOLE] to run as console
  73.     # Prefix with [PLAYER] to run as the player
  74.     # Prefix with [OP] to run as the player but with "Server Operator" permissions
  75.     commands:
  76.     - "[PLAYER]me logged out during combat!"
  77.  
  78. # Combat options for CombatLogX  
  79. combat:
  80.   # Set this to true if players should be untagged when their current enemy dies
  81.   # Default: false
  82.   untag on enemy death: false
  83.  
  84.   # Set this to true if players should be untagged when they die
  85.   # Default: true
  86.   untag on self death: true
  87.  
  88.   bypass:
  89.     # Set this to true if players should be allowed to bypass combat. You will need to give them the permission that is configured below
  90.     # Default: false
  91.     allow: false
  92.  
  93.     # Change this if you don't like the default permission
  94.     permission: "combatlogx.bypass"
  95.  
  96.   # Set this to true to allow players to tag themselves
  97.   # Default: true
  98.   self: true
  99.  
  100.   mobs:
  101.     # Set this to true to allow mobs to tag players
  102.     # Default: false
  103.     enabled: false
  104.  
  105.     # List of mobs that do not cause combat
  106.     blacklist:
  107.     - WITHER
  108.     - ARMOR_STAND
  109.  
  110.   sudo:
  111.     # Set this to true if players/console should run commands when a player is tagged
  112.     # Default: false
  113.     enabled: false
  114.  
  115.     # List of commands if the above option is set to true
  116.     # Prefix with [CONSOLE] to run as console
  117.     # Prefix with [PLAYER] to run as the player
  118.     # Prefix with [OP] to run as the player but with "Server Operator" permissions
  119.     commands:
  120.     - "[PLAYER]me is now in Combat"