Skip to content

Instantly share code, notes, and snippets.

@timothyekl
Created November 21, 2011 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timothyekl/1381359 to your computer and use it in GitHub Desktop.
Save timothyekl/1381359 to your computer and use it in GitHub Desktop.
PneumatiCraft ChatSuite config
plugin:
default_locale: en
locales: [en]
# if allow_channels is false, your users will be unable to use any channel
# related commands, and as such the default channel will become their permanent
# chat place (it is recommended to set default_channel to global if you set this to false)
# note: a change to this setting will require a full /reload or server restart
allow_channels: true
allow_whispers: true
allow_afk: true
# This is the default channel a player will be chatting in. A value of 'global'
# means that they will chat to everyone on the server, while 'world' means
# that only players on their current world will see their messages.
# values for default_channel are ONLY 'global' or 'world'
default_channel: global
global_channel_name: 'Global'
# persist_user_settings will determine whether or not individual user settings
# like localizations and channels will be persisted between sessions
# if this is set to true, it will increase overhead by a small amount
persist_user_settings: false
debug: false
groups:
# %f = faction format
# %h = Heroes class
# %c = channel name
# %n = player name; %dn = player display name
# %t = target name; %dt = target display name
# %p = prefix; %s = suffix
# %w = world
# %m = sent message
# &0-F = color codes, case-insensitive
default:
weight: 1
channel: '[%c]'
prefix: ''
group: ''
suffix: ''
afk: ''
format:
global: '[%w] <&7%n&f> %m'
message: '[%w] <&7%n&f> %m'
whisper_send: '&6To &B%t&6>>&F %m'
whisper_receive: '&6From &B%t&6>>&F %m'
user:
weight: 2
channel: '[%c]'
prefix: ''
group: 'user'
suffix: ''
afk: '&8(AFK)&f'
format:
global: '[%w] <&9%n&f%afk> %m'
message: '[%w] <&9%n&f%afk> %m'
whisper_send: '&6To &B%t&6>>&F %m'
whisper_receive: '&6From &B%t&6>>&F %m'
moderator:
weight: 4
channel: '[%c]'
prefix: ''
group: 'moderator'
suffix: ''
afk: ' &8(AFK)&f'
format:
global: '[%w] <&a%n&f%afk> %m'
message: '[%w] <&a%n&f%afk> %m'
whisper_send: '&6To &B%t&6>>&F %m'
whisper_receive: '&6From &B%t&6>>&F %m'
developer:
weight: 3
channel: '[%c]'
prefix: ''
group: 'developer'
suffix: ''
afk: '&8(AFK)&f'
format:
global: '[%w] <&5%n&f%afk> %m'
message: '[%w] <&5%n&f%afk> %m'
whisper_send: '&6To &B%t&6>>&F %m'
whisper_receive: '&6From &B%t&6>>&F %m'
admin:
weight: 5
channel: '[%c]'
prefix: ''
group: 'admin'
suffix: ''
afk: '&8(AFK)&f'
format:
global: '[%w] <&c%n&f%afk> %m'
message: '[%w] <&c%n&f%afk> %m'
whisper_send: '&6To &B%t&6>>&F %m'
whisper_receive: '&6From &B%t&6>>&F %m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment