config-sample.php
author Dan
Sat, 15 Mar 2008 19:53:27 -0400
changeset 0 d02690a8552c
child 2 c474904ed707
permissions -rw-r--r--
Initial population. EnanoBot v0.1.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     1
<?php
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     2
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     3
// Rename this to config.php and run php ./enanobot.php to start.
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     4
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     5
$nick = 'EnanoBot';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     6
$pass = '';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     7
$name = 'Enano CMS logging/message bot';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     8
$user = 'enano';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
     9
$privileged_list = array('your', 'nick', 'list', 'here');
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
    10
$mysql_host = 'localhost';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
    11
$mysql_user = '';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
    12
$mysql_pass = '';
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
    13
d02690a8552c Initial population. EnanoBot v0.1.
Dan
parents:
diff changeset
    14
?>