Added basic API docs, implemented !uptime bot command, made quick fix to ignore lines starting with '/' and changed default auto* settings to true.

This commit is contained in:
Diego Martínez
2013-01-01 21:15:45 -02:00
parent 31e7d96de4
commit 09e72607f2
5 changed files with 73 additions and 16 deletions

View File

@ -40,11 +40,9 @@ mt_irc.message_format_in = "<$(name)@IRC> $(message)";
mt_irc.debug = true;
-- Whether to automatically join the channed when player joins
-- (boolean, default false)
-- For now leave this false if using autoconnect. Bot will join channel when first user
-- types the /join command in game.
mt_irc.auto_join = false;
-- (boolean, default true)
mt_irc.auto_join = true;
-- Whether to automatically connect to the server on mod load
-- (boolean, default false)
mt_irc.auto_connect = false;
-- (boolean, default true)
mt_irc.auto_connect = true;