rathena/conf/channels.conf
akinari1087 81e3b03ace Poison React now activates when character is damaged only - Fixes bugreport:109
Cloaking fixed to official behaviour (Thanks helvetica for the hour of testing) - Concerning bugreport:171
Fixed instancing long map names causing crashes
- Cannot save or memo on instance maps (Lemongrass)
- Map channels are no longer activated on instance maps (Lemongrass)
- Fixed a character save issue with instance maps (Lemongrass)
- Map local channels are disabled by default, this is custom (Lemongrass)
- Just thank Lemongrass overall, I gave him a hard time with this issue

~ Hercules Merge ~
Update Bloody Lust and Maelstrom to official behaviour (Credits: malufett)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17408 54d463be-8e91-2dee-dedb-b68131a5f0ec
2013-07-09 06:02:39 +00:00

45 lines
1.2 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 @channel command? */
/* (must also allow players to use @channel in groups.conf) */
allow_user_channel_creation: true
/* "map_local_channel" is an instanced channel unique to each map. */
map_local_channel: false
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
}
)