Skip to content

Commit

Permalink
Updated config and README
Browse files Browse the repository at this point in the history
  • Loading branch information
MR sk committed Jun 13, 2011
1 parent bf55de7 commit 69ac0f3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
14 changes: 13 additions & 1 deletion README
Expand Up @@ -2,6 +2,18 @@ Botcoin README

1) Rename config-fillmein.ini to config.ini
2) Edit config.ini and set your options.

port = 6667 # an interger port
host = irc.whatever.net # a qualified hostname
channel = somechannel # channel, no # prefix required
key = OPTIONAL # channel (+k) optional
name = myName # the name of the bot (whois)
nick = My-NickyNick # the nick (shown in channel, /msg, etc)
owner = "owner!shell@host.com" # the owner. Make sure you get this correct.
# should be in the format "nick!user@sub.tld.com"
triggerUpdateFreq = 30 # How often to check the triggers programmatically.
tickerUpdateFreq = 30 # How often to update ticker data (Can't be > MtGox limit).

3) Make bootstrap file executable:
shell> chmod +x run.php
4) Run the bot
Expand All @@ -19,4 +31,4 @@ Supported private commands:

!join Join the pre-set channel.
!shutdown Quit IRC / leave the server.
!part Leave the channel, stay connected to server.
!part Leave the channel, stay connected to server.
22 changes: 12 additions & 10 deletions config-fillmein.ini
@@ -1,10 +1,12 @@
port = 6667 # an interger port
host = irc.whatever.net # a qualified hostname
channel = somechannel # channel, no # prefix required
key = OPTIONAL # channel (+k) optional
name = myName # the name of the bot (whois)
nick = My-NickyNick # the nick (shown in channel, /msg, etc)
owner = "owner!shell@host.com" # the owner. Make sure you get this correct.
# should be in the format "nick!user@sub.tld.com"
triggerUpdateFreq = 30 # How often to check the triggers programmatically.
tickerUpdateFreq = 30 # How often to update ticker data (Can't be > MtGox limit).
# see README on details of each config entry.
# Comments removed because PHP was barfing on non-alpha characters.
port = 6667
host = irc.whatever.net
channel = somechannel
key = OPTIONAL
name = myName
nick = My-NickyNick
owner = "owner!shell@host.com"

triggerUpdateFreq = 30
tickerUpdateFreq = 30

0 comments on commit 69ac0f3

Please sign in to comment.