Advertisement
MrSparkzz

ServerControl Configuration

Apr 6th, 2013
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.25 KB | None | 0 0
  1. ####################################
  2. # ServerControl Configuration File #
  3. ####################################
  4. # Version 1
  5. server:
  6.  # this is the name of your server. It will be used in ServerControl and any plugin
  7.   # that hooks into ServerControl
  8.   name: '&6Mineville'
  9.  
  10. # rules and website will be accessed by (default) using !rules or !website
  11. rules:
  12.  # if you wish to add more lines just add two spaces a hyphen "-" then single quotes
  13.   # and the rule you want to show
  14.   - '&cNo Griefing'
  15.   - '&cNo Hacking'
  16.   - '&aBe Nice'
  17. website: 'www.minecraft.net'
  18.  
  19. motd:
  20.  # if a player joins and they are an admin this will show up
  21.   admin: '&cWelcome, keep an eye out for griefers!'
  22.   # if a player joins and they are not an admin this will show up
  23.   ingame: '&2Welcome, &6+player &2to the &6+server &2server!'
  24.   # this will show in a client's server list under the server name
  25.   server: '&2My Server!'
  26.   # if it the player's first time joining it will broadcast this to the server
  27.   first_join: '&6+player &4has joined the game for the first time!'
  28.   # when a player joins it will broadcast this message
  29.   join: '&6+player &4has joined the game!'
  30.   # when a player quits it will broadcast this message
  31.   leave: '&6+player &4has left the game!'
  32.  
  33. # if a player dies and ban or kick is enabled it will show these messages
  34. on_death:
  35.  # ban on death message
  36.   ban: '&cYou died. Thanks for playing on this server!'
  37.   # kick on death message
  38.   kick: '&cYou died. Try joining again later'
  39.  
  40. chat:
  41.  # enable players to type colorcodes and a message in the chat
  42.   # example: &1Hello everyone would show up in blue
  43.   chat_colors: true
  44.   # enable the /nickname command
  45.   nick: true
  46.   # allow players to have colors in their nicknames
  47.   nick_colors: true
  48.   # if a player has a nickname this will show up before their name
  49.   # delete the ~ if you don't want a prefix
  50.   nick_prefix: "~"
  51.   # minimum length for a nickname
  52.   nick_length_min: 3
  53.   # maximum length for a nickname
  54.   nick_length_max: 12
  55.   # what you have to type before rules or website to get the rules or website
  56.   # Example (default) !rules will display rules
  57.   rules_prefix: "!"
  58.   # Example (default) !website will display website
  59.   website_prefix: "!"
  60.  
  61. players:
  62.  # let everyone know a player was kicked and for what
  63.   broadcast_on_kick: true
  64.   # let everyone know a player was banned and for what
  65.   broadcast_on_ban: true
  66.   # default kick message
  67.   kick_message: '&cYou have been kicked'
  68.   # default ban message
  69.   ban_message: '&cYou have been banned'
  70.  
  71. enable:
  72.   motd:
  73.    # allows the admin to get a different motd than normal players
  74.     admin: true
  75.     # allows a player to see the motd on join
  76.     ingame: true
  77.     # enables the server motd which will show up on a client's server list
  78.     server: true
  79.   on_death:
  80.    # if a player dies, ban them?
  81.     ban: false
  82.     # if a player dies, kick them?
  83.     kick: false
  84.     # if a player dies, make them a spectator?
  85.     spec: false
  86.   # enable the (default) !rules command
  87.   rules: true
  88.   # enable the (default) !website command
  89.   website: true
  90.    
  91. warnings:
  92.  # no warnings setup at this time
  93.  
  94. errors:
  95.  # if a player does not have permission send this message
  96.   no_permission: '&cSorry, you are not permitted to do this!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement