-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added simple hyperlinks support & perl-config file support
- Loading branch information
Showing
3 changed files
with
77 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
### USER VARIABLES SECTION START ############################################# | ||
# | ||
# Nick name and XMPP resource name used by bot. | ||
$name = 'AimBot'; | ||
# Path to file for karma saving routine | ||
$karmafile = '/tmp/karma'; | ||
# Address of XMPP server of the bot's account | ||
$server = 'zhmylove.ru'; | ||
# Port of XMPP server of the bot's account | ||
$port = 5222; | ||
# Username of bot's account on the server | ||
$username = 'aimbot'; | ||
# Password for this username | ||
$password = 'password'; | ||
# Interval in seconds between background_checks() calee | ||
$loop_sleep_time = 60; | ||
# Address of a conference server, where forums are expected to be | ||
$conference_server = 'conference.jabber.ru'; | ||
# MUC forums (chatrooms) with their passwords | ||
%forum_passwords = ('ubuntulinux' => 'ubuntu'); | ||
# | ||
### USER VARIABLES SECTION END ############################################# |
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