Advertisement
Guest User

Untitled

a guest
Jan 14th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 15.06 KB | None | 0 0
  1. # Just some general OKChat settings.
  2. general:
  3.    # Specify the locale.yml file here.
  4.     locale: 'locale.yml'
  5.     # Should we enable word wrapping?
  6.     word-wrap: true
  7.     # Specify the format of timestamps for the %time% variable here.
  8.     time-format: 'HH:mm:ss'
  9.     # Should color codes be stripped from logged chat?
  10.     strip-log-color: false
  11. # Configure join messages here.
  12. join-messages:
  13.    # Enable modification of join messages?
  14.     enable: false
  15.     # Configure global join message here.
  16.     # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  17.     message: '&bPlayer &f%prefix%%displayname%%suffix% &bhas joined &f%world%&b!'
  18.     # Configure world-specific join messages here.
  19.     worlds:
  20.        # The name of your world goes here.
  21.         ExampleWorld:
  22.            # The join message.
  23.             # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  24.             message: '&bPlayer &f%prefix%%displayname%%suffix% &bhas joined &f%world%&b!'
  25.             # Should this join message be treated as a global join message?
  26.             global: false
  27.             # If global is set to false, list the worlds that can see this join message here.
  28.             see:
  29.            - 'ExampleWorld'
  30.             - 'ExampleWorld_nether'
  31.             # If global is set to true, list the worlds that can't see this join message here.
  32.             hide:
  33.            - 'AnotherWorld'
  34.             - 'AnotherWorld_the_end'
  35. # Configure quit messages here.
  36. quit-messages:
  37.    # Enable modification of quit messages?
  38.     enable: false
  39.     # Configure global quit message here.
  40.     # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  41.     message: '&bPlayer &f%prefix%%displayname%%suffix% &bhas left &f%world%&b!'
  42.     # Configure world-specific quit messages here.
  43.     worlds:
  44.        # The name of your world goes here.
  45.         ExampleWorld:
  46.            # The quit message.
  47.             # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  48.             message: '&bPlayer &f%prefix%%displayname%%suffix% &bhas left &f%world%&b!'
  49.             # Should this quit message be treated as a global quit message?
  50.             global: false
  51.             # If global is set to false, list the worlds that can see this quit message here.
  52.             see:
  53.            - 'ExampleWorld'
  54.             - 'ExampleWorld_nether'
  55.             # If global is set to true, list the worlds that can't see this quit message here.
  56.             hide:
  57.            - 'AnotherWorld'
  58.             - 'AnotherWorld_the_end'
  59. # Configure kick messages here.
  60. kick-messages:
  61.    # Enable modification of kick messages?
  62.     enable: false
  63.     # Configure global kick message here.
  64.     # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  65.     message: '&bPlayer &f%prefix%%displayname%%suffix% &bwas kicked from &f%world%&b!'
  66.     # Configure world-specific kick messages here.
  67.     worlds:
  68.        # The name of your world goes here.
  69.         ExampleWorld:
  70.            # The kick message.
  71.             # Set to ''(empty) or 'none' to disable, or 'default' to leave as is.
  72.             message: '&bPlayer &f%prefix%%displayname%%suffix% &bwas kicked from &f%world%&b!'
  73.             # Should this kick message be treated as a global kick message?
  74.             global: false
  75.             # If global is set to false, list the worlds that can see this kick message here.
  76.             see:
  77.            - 'ExampleWorld'
  78.             - 'ExampleWorld_nether'
  79.             # If global is set to true, list the worlds that can't see this kick message here.
  80.             hide:
  81.            - 'AnotherWorld'
  82.             - 'AnotherWorld_the_end'
  83. # This will allow you to define permissions-based prefixes.
  84. # This is useful for when your Permissions bridge does not support prefixes.
  85. # Note: This WILL override the %prefix% variable if enabled.
  86. prefixes:
  87.    # Enable OKChat's built-in prefix system?
  88.     enable: true
  89.     # List nodes, prefixes and weights here.
  90.     prefixes:
  91.        # This would be the permissions node required to have the prefix.
  92.         # These need to be one word. No decimal points allowed.
  93.         # So you'd need "okchat.prefix.examplenode" in this case.
  94.         admin:
  95.            # Define the actual prefix here.
  96.             prefix: '[&cAdmin&f]&c'
  97.             # Weight values can be assigned to prefixes(default: 0).
  98.             # If a user has access to multiple prefixes, the one with the highest weight value will be chosen.
  99.             weight: '50'
  100.         user:
  101.             prefix: '[Gracz]'
  102.             weight: '50'
  103.         mod:
  104.             prefix: '[$9Mod$f]$9'
  105.             weight: '50'
  106.         vip:
  107.             prefix: '[$aVIP$f]$a'
  108.             weight: '50'
  109. # This will allow you to define permissions-based suffixes.
  110. # This is useful for when your Permissions bridge does not support suffixes.
  111. # Note: This WILL override the %suffix% variable if enabled.
  112. suffixes:
  113.    # Enable OKChat's built-in suffix system?
  114.     enable: true
  115.     # List nodes, suffixes and weights here.
  116.     suffixes:
  117.        # This would be the permissions node required to have the suffix.
  118.         # These need to be one word. No decimal points allowed.
  119.         # So you'd need "okchat.suffix.examplenode" in this case.
  120.         admin:
  121.            # Define the actual suffix here.
  122.             suffix: '&f'
  123.             # Weight values can be assigned to suffixes(default: 0).
  124.             # If a user has access to multiple suffixes, the one with the highest weight value will be chosen.
  125.             weight: '50'
  126.         user:
  127.             suffix: '$f'
  128.             weight: '50'
  129.         mod:
  130.             suffix: '$f'
  131.             weight: '50'
  132.         vip:
  133.             suffix: '$f'
  134.             weight: '50'
  135. # Configure OKChat's spam security suite here.
  136. spam-protection:
  137.    # Should we enable it?
  138.     enable: true
  139.     # Configure chat spam protection here.
  140.     chat:
  141.        # Is protection enabled?
  142.         enable: true
  143.         # How many actions can a player perform before protection kicks in?
  144.         actions: 30
  145.         # How long should a player refrain from trying to chat for the punishment to wear off(seconds)?
  146.         inactivity: 15
  147.         # Configure punishments per action here.
  148.         punishments:
  149.            # Configure muting chat here.
  150.             mute:
  151.                # Is muting enabled?
  152.                 enable: true
  153.             # Configure damaging on chat here.
  154.             damage:
  155.                # Is damaging enabled?
  156.                 enable: true
  157.                 # The amount of damage to deal per chat attempt.
  158.                 amount: 1
  159.             # Configure executing commands on chat here.
  160.             command:
  161.                # Are commands enabled?
  162.                 enable: false
  163.                 # List commands here.
  164.                 commands:
  165.                - 'money grant %name% -20'
  166.                 - 'example command'
  167.         # The messages to send players.
  168.         messages:
  169.            # The message sent when the punishment starts. Set to '' or 'none' to disable.
  170.             entry: 'none'
  171.             # The message sent when the punishment starts. Set to '' or 'none' to disable.
  172.             exit: 'none'
  173.     # Configure command spam protection here.
  174.     command:
  175.        # Is protection enabled?
  176.         enable: true
  177.         # How many actions can a player perform before protection kicks in?
  178.         actions: 30
  179.         # How long should a player refrain from trying to use commands for the punishment to wear off(seconds)?
  180.         inactivity: 15
  181.         # Configure punishments per action here.
  182.         punishments:
  183.            # Configure muting commands here.
  184.             mute:
  185.                # Is muting enabled?
  186.                 enable: true
  187.             # Configure damaging on commands here.
  188.             damage:
  189.                # Is damaging enabled?
  190.                 enable: false
  191.                 # The amount of damage to deal per command attempt.
  192.                 amount: 4
  193.             # Configure executing commands on commands here.
  194.             command:
  195.                # Are commands enabled?
  196.                 enable: false
  197.                 # List commands here.
  198.                 commands:
  199.                - 'money grant %name% -20'
  200.                 - 'example command'
  201.         # The messages to send players.
  202.         messages:
  203.            # The message sent when the punishment starts. Set to '' or 'none' to disable.
  204.             entry: '&4Zostales wyciszony za SPAM!'
  205.             # The message sent when the punishment starts. Set to '' or 'none' to disable.
  206.             exit: '&2Juz nie jestes wyciszony!'
  207.     # Configure login spam protection here.
  208.     login:
  209.        # Is protection enabled?
  210.         enable: true
  211.         # How many actions can a player perform before protection kicks in?
  212.         actions: 10
  213.         # How long should a player refrain from trying to log in for the punishment to wear off(seconds)?
  214.         inactivity: 15
  215.         # Configure punishments per action here.
  216.         punishments:
  217.            # Configure executing commands on login here.
  218.             command:
  219.                # Are commands enabled?
  220.                 enable: false
  221.                 # List commands here.
  222.                 commands:
  223.                - 'ban %name%'
  224.                 - 'say &fBanning &b%name% &ffor spamming.'
  225.         messages:
  226.            # The message sent when the punishment starts. Set to '' or 'none' to disable.
  227.             entry: 'none'
  228.             # The message sent when the punishment starts. Set to '' or 'none' to disable.
  229.             exit: 'none'
  230. # Configure the Message of the Day.
  231. motd:
  232.    # Enable MotD?
  233.     enable: true
  234.     # Configure global MotD here.
  235.     # Set to ''(empty) or 'none' to disable.
  236.     messages:
  237.    - '&6Zalogowales sie na swiecie -&b%world%&6-.'
  238.     - ''
  239.     # Should we show the /who player list?
  240.     global-list: true
  241.     # Should we show the /who <world> player list?
  242.     world-list: false
  243.     # Configure world-specific MotDs here.
  244.     worlds:
  245.        # The name of your world goes here.
  246.         world:
  247.            # This would be the permissions node required to have the motd.
  248.             # These need to be one word. No decimal points allowed.
  249.             # So you'd need "okchat.motd.ExampleWorld.examplenode" in this case.
  250.             user:
  251.                # The MotD.
  252.                 # Set to ''(empty) or 'none' to disable.
  253.                 # Zmienne: %world% %prefix% %displayname% %suffix% --------------------------------------------
  254.                 messages:
  255.                 - '&6Swiat: &aZiemia&6!'
  256.                 # Should we show the /who player list?
  257.                 global-list: true
  258.                 # Should we show the /who <world> player list?
  259.                 world-list: false
  260.                 # Weight values can be assigned to motds(default: 0).
  261.                 # If a user has access to multiple motds, the one with the highest weight value will be chosen.
  262.                 weight: '50'
  263. # Configure the /who player list here.
  264. global-list:
  265.    # Configure the initial messages to be shown before the actual list.
  266.     # Set to ''(empty) or 'none' to disable.
  267.     messages:
  268.    - '&cObecnie na serwerze jest &f%currentplrs% &cgraczy z &f%maxplrs% &cmaksymalnych.'
  269.     # Configure the format for player names here. Set to ''(empty) or 'none' to disable.
  270.     format: '%prefix%%displayname%%suffix%'
  271. # Configure the /who <world> player list here.
  272. world-list:
  273.    # Configure the initial messages to be shown before the actual list.
  274.     # Set to ''(empty) or 'none' to disable.
  275.     messages:
  276.    - '&cObecnie na swiecie %targetworld% jest &f%currentplrs% &cgraczy: &f%targetworldplrs%$c.'
  277.     # Configure the format for player names here. Set to ''(empty) or 'none' to disable.
  278.     format: '%prefix%%displayname%%suffix%'
  279. # Configure the server player list here(press TAB).
  280. player-list:
  281.    # Configure the format for player names here. Set to ''(empty) or 'none' to disable.
  282.     format: '%prefix%%displayname%%suffix%'
  283. # Configure OKChat's built-in alias/nickname system here.
  284. nicknames:
  285.    # Should we enable it?
  286.     enable: true
  287.     # Define the maximum length of a nickname here.
  288.     maximum: 25
  289.     # Define the minimum length of a nickname here.
  290.     minimum: 3
  291.     # List nicknames that aren't allowed here.
  292.     disallow:
  293.    - Admin
  294.     - Administrator
  295.     - Console
  296.     - Notch
  297.     - Developer
  298.     - CTSG
  299.     - JJay
  300. # Configure titles here(REQUIRES SPOUT).
  301. titles:
  302.    # Should we enable title formatting for SpoutCraft clients?
  303.     enable: false
  304.     # Configure the format for player titles here. Set to ''(empty) or 'none' to diable.
  305.     format: '%prefix%%displayname%%suffix%'
  306. # Configure private messages here.
  307. whispers:
  308.    # Configure the format of the message the player SENDING the whisper will see.
  309.     format-to: '&7<&fDo&7 &f%prefix%%displayname%%suffix%&7> &f%message%'
  310.     # Configure the format of the message the player RECEIVING the whisper will see.
  311.     format-from: '&7<&fOd&7 &f%prefix%%displayname%%suffix%&7> &f%message%'
  312.     # Allow a player to whisper to someone he's ignoring?
  313.     ignore-allow: false
  314. # Configure chat channels here.
  315. channels:
  316.    # Configure the default channels here.
  317.     default:
  318.    - ziemia
  319.     - Admin
  320.     # Configure the channels here.
  321.     channels:
  322.        # Name of the channel.
  323.         lokalny:
  324.            # The chat format for the channel.
  325.             format: '&f%prefix%%displayname%%suffix%&7: &f%message%'
  326.             # Is the chat global?
  327.             global: false
  328.             # Is the chat world-based?
  329.             world: false
  330.             # Is the chat local?
  331.             local: true
  332.             # (optional) Range of local chat
  333.             range: 50
  334.             # Does this channel require 'okchat.channel.<name>' to join?
  335.             protected: false
  336.             # Are you allowed to unsubscribe from this channel?
  337.             unsubscribe: false
  338.         # Name of the channel.
  339.         ziemia:
  340.            # The chat format for the channel.
  341.             format: '&f%prefix%%displayname%%suffix%&7: &f%message%'
  342.             # Is the chat global?
  343.             global: false
  344.             # Is the chat world-based?
  345.             world: true
  346.             # Is the chat local?
  347.             local: false
  348.             # (optional) Range of local chat
  349.             range: 15
  350.             # Does this channel require 'okchat.channel.<name>' to join?
  351.             protected: true
  352.             # Are you allowed to unsubscribe from this channel?
  353.             unsubscribe: false
  354.         # Name of the channel.
  355.         Admin:
  356.            # The chat format for the channel.
  357.             format: '&7[&b%ADMIN%&7] &f%prefix%%displayname%%suffix%&7: &f%message%'
  358.             # Is the chat global?
  359.             global: false
  360.             # Is the chat world-based?
  361.             world: false
  362.             # Is the chat local?
  363.             local: false
  364.             # (optional) Range of local chat
  365.             range: 15
  366.             # Does this channel require 'okchat.channel.<name>' to join?
  367.             protected: true
  368.             # Are you allowed to unsubscribe from this channel?
  369.             unsubscribe: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement