diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/atcommand.conf | 7 | ||||
-rw-r--r-- | conf/channels.conf | 22 | ||||
-rw-r--r-- | conf/map-server.conf | 9 |
3 files changed, 33 insertions, 5 deletions
diff --git a/conf/atcommand.conf b/conf/atcommand.conf index 67af3b91f..6e35d5327 100644 --- a/conf/atcommand.conf +++ b/conf/atcommand.conf @@ -59,6 +59,13 @@ aliases: { channel: ["main"] } +/* list of commands that should not be logged at all */ +/* add as many commands as you like */ +nolog: { + iteminfo: 1 + mobinfo: 1 +} + /* Commands help file */ help: { @include "conf/help.txt" diff --git a/conf/channels.conf b/conf/channels.conf index b12d2da8b..3584fc2ea 100644 --- a/conf/channels.conf +++ b/conf/channels.conf @@ -1,3 +1,14 @@ +//==================================================== +//= _ _ _ +//= | | | | | | +//= | |_| | ___ _ __ ___ _ _| | ___ ___ +//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| +//= | | | | __/ | | (__| |_| | | __/\__ \ +//= \_| |_/\___|_| \___|\__,_|_|\___||___/ +//= +//= http://hercules.ws/board/ +//==================================================== +//= http://hercules.ws/board/topic/316-introducing-hercules-channel-system/ chsys: ( { /* default channels (available on boot) */ @@ -18,6 +29,7 @@ chsys: ( Cyan: "0x00b89d" Yellow: "0xffff90" Green: "0x28bf00" + Light_Green: "0x3dff98" Normal: "0x00ff00" /* as many colors as you like */ } @@ -33,7 +45,15 @@ chsys: ( ally_channel_enabled: true ally_channel_name: "ally" /* available as #ally */ ally_channel_color: "Green" - ally_channel_autojoin: true + 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.rizon.net:6665" /* network to connect to (:and port) */ + irc_channel_channel: "#Hercules" /* channel in the network above to join */ + irc_channel_nick: "Hercules_chSysBot" /* nick the bot will use */ + irc_channel_nick_pw: "" /* password to this nick (if any) to identify to nick server on the irc network */ } ) diff --git a/conf/map-server.conf b/conf/map-server.conf index b251e69ec..cac5421e6 100644 --- a/conf/map-server.conf +++ b/conf/map-server.conf @@ -89,18 +89,19 @@ minsave_time: 100 // Apart from the autosave_time, players will also get saved when involved // in the following (add as needed): -// 1: after every successful trade -// 2: after every vending transaction -// 4: after closing storage/guild storage. +// 1: After every successful trade +// 2: After every vending transaction +// 4: After closing storage/guild storage. // 8: After hatching/returning to egg a pet. // 16: After successfully sending a mail with attachment // 32: After successfully submitting an item for auction // 64: After successfully get/delete/complete a quest +// 128: After every buying store transaction // NOTE: These settings decrease the chance of dupes/lost items when there's a // server crash at the expense of increasing the map/char server lag. If your // server rarely crashes, but experiences interserver lag, you may want to set // these off. -save_settings: 127 +save_settings: 255 // Message of the day file, when a character logs on, this message is displayed. motd_txt: conf/motd.txt |