-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
71 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
[General] | ||
SQLite = on ; | ||
MySQL = off ; see mysql.ini for host/user/db config | ||
AdminPass = changethis ; specifies the password to get recognised as bot admin -> /msg BotNickname login password | ||
Admins[] = "[email protected]" ; adding your ident allows you to get recognised as administrator without login | ||
;Admins[] = "[email protected]" ; format: nickname!ident@hostname | ||
Logging = on ; specifies whether all channel messages get logged | ||
Sleep = 40000 ; specifies the sleep time of the bot (in micro seconds) | ||
Prefix = "!" ; command prefix | ||
Ping = 60 ; specifies the bot ping timeout check in seconds | ||
;Plugins[] = test ; plugins loaded on startup, use !load/!unload when the bot is connected | ||
Plugins[] = ctcp | ||
Plugins[] = dcc | ||
; SQLite : on/off | ||
SQLite = on | ||
|
||
; MySQL : on/off | ||
; @ /configuration/mysql.ini | ||
MySQL = off | ||
|
||
; AdminPass : specifies the password of the bot | ||
; How to log in on IRC: /msg BotNickname login [password] | ||
AdminPass = changethis | ||
|
||
; Admins[] : defines who is allowed to fully control the bot without logging in | ||
; Format nickname!ident@hostname | ||
Admins[] = "[email protected]" | ||
|
||
; Sleep : specified the sleep time of the bot in micro seconds | ||
Sleep = 40000 | ||
|
||
; Prefix : sets the command prefix | ||
Prefix = "!" | ||
|
||
; Ping : sets the ping timeout check in seconds | ||
Ping = 60 | ||
|
||
; Plugins[] : defines what plugins are being initialized on startup (/plugins/) | ||
Plugins[] = "ctcp" | ||
Plugins[] = "dcc" | ||
Plugins[] = "auto_perform" | ||
Plugins[] = "channel_log" | ||
BindIP = ; specifies the IP & port that PHP will use to access the network | ||
; e.g. "192.168.0.1:1001" | ||
Plugins[] = "commands" | ||
|
||
; BindIP : specifies the IP & port that PHP will use to access the network | ||
; e.g. "192.168.0.1:1001" | ||
BindIP = | ||
|