From 14431f1fa770d1f25c4bba0e3905373b1d8537db Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 15 Nov 2015 17:23:49 +0300 Subject: Rename channels.conf into channels.conf.base. --- .gitignore | 1 + conf/channels.conf | 67 ------------------------------------------------- conf/channels.conf.base | 67 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 67 deletions(-) delete mode 100644 conf/channels.conf create mode 100644 conf/channels.conf.base diff --git a/.gitignore b/.gitignore index 77b13df2..603b2148 100644 --- a/.gitignore +++ b/.gitignore @@ -115,5 +115,6 @@ Thumbs.db *.txt~ *.conf~ *.py~ +*.bak /gmon.out /gprof_* diff --git a/conf/channels.conf b/conf/channels.conf deleted file mode 100644 index f568e017..00000000 --- a/conf/channels.conf +++ /dev/null @@ -1,67 +0,0 @@ -//==================================================== -//= _ _ _ -//= | | | | | | -//= | |_| | ___ _ __ ___ _ _| | ___ ___ -//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| -//= | | | | __/ | | (__| |_| | | __/\__ \ -//= \_| |_/\___|_| \___|\__,_|_|\___||___/ -//= -//= http://herc.ws/board/ -//==================================================== -//================= More Information ================= -// http://herc.ws/board/topic/316-introducing-hercules-channel-system/ -//==================================================== -chsys: ( -{ - /* Default Channels (available on boot) */ - default_channels: { - /* channel_name : channel_messages_color */ - main: "Orange" /* Available as #main */ - support: "Blue" /* Available as #support */ - trade: "Red" /* Available as #trade */ - gm: "Red" - lang: "Green" - offtopic: "Cyan" /* Available as #offtopic */ - /* You may add as many channels as you like */ - } - /* Colors Available */ - colors: { - Default: "0xffffff" /* Custom channels use the first color listed unless a font is selected through @channel. */ - Red: "0xff0000" - Blue: "0x83cfe9" - Orange: "0xe57c00" - Cyan: "0x00b89d" - Yellow: "0xffff90" - Green: "0x28bf00" - Light_Green: "0x3dff98" - Normal: "0x00ff00" - /* As many colors as you 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 - - /* "map_local_channel" is a instanced channel unique to each map. */ - map_local_channel: true - map_local_channel_name: "map" /* Available as #map */ - map_local_channel_color: "Yellow" - map_local_channel_autojoin: true /* You can disable autojoin in specific maps through a mapflag or zone. */ - - /* "ally_channel" is a channel shared by all your guild allies */ - ally_channel_enabled: true - ally_channel_name: "ally" /* Available as #ally */ - ally_channel_color: "Green" - ally_channel_autojoin: true /* Will members autojoin to their respective #ally chats when they log-in? */ - - /* "irc_channel" is a special channel connected to a specific chat room in any irc network. */ - irc_channel_enabled: true - irc_channel_name: "irc" /* available as #irc */ - irc_channel_color: "Light_Green" - irc_channel_network: "irc.freenode.net:6667" /* network to connect to (:and port) */ - irc_channel_channel: "#evolonline" /* channel in the network above to join */ - irc_channel_nick: "evolbot" /* nick the bot will use */ - irc_channel_nick_pw: "" /* password to this nick (if any) to identify to nick server on the irc network */ - irc_channel_use_ghost: false /* whether to send a GHOST command to the nick server (requires irc_channel_nick_pw to be defined) */ - irc_channel_autojoin: true -} -) diff --git a/conf/channels.conf.base b/conf/channels.conf.base new file mode 100644 index 00000000..c7e372c1 --- /dev/null +++ b/conf/channels.conf.base @@ -0,0 +1,67 @@ +//==================================================== +//= _ _ _ +//= | | | | | | +//= | |_| | ___ _ __ ___ _ _| | ___ ___ +//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| +//= | | | | __/ | | (__| |_| | | __/\__ \ +//= \_| |_/\___|_| \___|\__,_|_|\___||___/ +//= +//= http://herc.ws/board/ +//==================================================== +//================= More Information ================= +// http://herc.ws/board/topic/316-introducing-hercules-channel-system/ +//==================================================== +chsys: ( +{ + /* Default Channels (available on boot) */ + default_channels: { + /* channel_name : channel_messages_color */ + main: "Orange" /* Available as #main */ + support: "Blue" /* Available as #support */ + trade: "Red" /* Available as #trade */ + gm: "Red" + lang: "Green" + offtopic: "Cyan" /* Available as #offtopic */ + /* You may add as many channels as you like */ + } + /* Colors Available */ + colors: { + Default: "0xffffff" /* Custom channels use the first color listed unless a font is selected through @channel. */ + Red: "0xff0000" + Blue: "0x83cfe9" + Orange: "0xe57c00" + Cyan: "0x00b89d" + Yellow: "0xffff90" + Green: "0x28bf00" + Light_Green: "0x3dff98" + Normal: "0x00ff00" + /* As many colors as you 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 + + /* "map_local_channel" is a instanced channel unique to each map. */ + map_local_channel: true + map_local_channel_name: "map" /* Available as #map */ + map_local_channel_color: "Yellow" + map_local_channel_autojoin: true /* You can disable autojoin in specific maps through a mapflag or zone. */ + + /* "ally_channel" is a channel shared by all your guild allies */ + ally_channel_enabled: true + ally_channel_name: "ally" /* Available as #ally */ + ally_channel_color: "Green" + ally_channel_autojoin: true /* Will members autojoin to their respective #ally chats when they log-in? */ + + /* "irc_channel" is a special channel connected to a specific chat room in any irc network. */ + irc_channel_enabled: false + irc_channel_name: "irc" /* available as #irc */ + irc_channel_color: "Light_Green" + irc_channel_network: "irc.freenode.net:6667" /* network to connect to (:and port) */ + irc_channel_channel: "#evolonline" /* channel in the network above to join */ + irc_channel_nick: "testbot" /* nick the bot will use */ + irc_channel_nick_pw: "" /* password to this nick (if any) to identify to nick server on the irc network */ + irc_channel_use_ghost: false /* whether to send a GHOST command to the nick server (requires irc_channel_nick_pw to be defined) */ + irc_channel_autojoin: true +} +) -- cgit v1.2.3-70-g09d2