Files
rathena/conf/channels.conf
akinari1087 fb9d857456 Rework of @fontcolor including new channel config - Fixes bugreport:7638
-> allow_user_color_override in conf/channels.conf
-> font color only currently works with channel system
Added server-wide NPC close on @reloadscript - Fixes bugreport:6818 & bugreport:6167
Fixed clif_equipitemack checks so characters update view in status window (lighta) - Fixes bugreport:7644

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17313 54d463be-8e91-2dee-dedb-b68131a5f0ec
2013-05-04 03:38:36 +00:00

48 lines
1.3 KiB
Plaintext

/* Channel system configuration file */
chsys: (
{
/* Default channels (available to all players) */
default_channels: {
/* channel_name : channel_messages_color */
main: "Yellow"
support: "Blue"
trade: "Red"
chat: "Default"
/* Add as many channels as you'd like. */
}
/* Colors available */
colors: {
Default: "0xffffff" /* Custom channels will use the first in the list unless a color is selected through @channel. */
Red: "0xff0000"
Blue: "0x83cfe9"
Orange: "0xe57c00"
Cyan: "0x00b89d"
Yellow: "0xffff90"
Green: "0x28bf00"
Normal: "0x00ff00"
/* Add as many colors as you'd like. */
}
/* Allow users to create their own (private) channels through @channels command? */
/* (must also allow players to use @channels in groups.conf) */
allow_user_channel_creation: true
/* Allow users to override a Non-Default channel color (@fontcolor) */
allow_user_color_override: false
/* "map_local_channel" is an instanced channel unique to each map. */
map_local_channel: true
map_local_channel_name: "map"
map_local_channel_color: "Yellow"
map_local_channel_autojoin: true /* Disable autojoin in specific maps through mapflag 'nomapchannelautojoin'. */
/* "ally_channel" is a channel shared by all your guild allies. */
ally_channel_enabled: true
ally_channel_name: "ally"
ally_channel_color: "Green"
ally_channel_autojoin: true
}
)