Bug fixes to actions/coroutines, added better debug mode

This commit is contained in:
aewens 2018-09-26 13:58:30 -04:00
parent 219baa47f6
commit 4e0978b534
19 changed files with 113765 additions and 44 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
settings.json
settings.demo.json
data/*.json
logs/*.log
irc/
# ---> Python

View File

@ -1,7 +1,7 @@
from actions.botlist import botlist
from actions.web import summon, whois
from actions.access import banish, pardon
from actions.control import puppet, nomad
from actions.control import puppet, inject, nomad
from actions.stupid import hmm, hmmscore, hmmscoreboard
actions = [
@ -17,37 +17,42 @@ actions = [
},
{
"type": "response",
"pattern": ";;!summon \S+ .+",
"pattern": "/!summon \S+ .+/",
"callback": summon
},
{
"type": "response",
"pattern": ";;!banish \S+ .+",
"pattern": "/!banish \S+ .+/",
"callback": banish
},
{
"type": "response",
"pattern": ";;!pardon \S+",
"pattern": "/!pardon \S+/",
"callback": pardon
},
{
"type": "response",
"pattern": ";;!puppet [^|]+\|.+",
"pattern": "/!puppet \S+ .+/",
"callback": puppet
},
{
"type": "response",
"pattern": ";;!nomad \S+ \S+",
"pattern": "/!inject \S+/",
"callback": inject
},
{
"type": "response",
"pattern": "/!nomad \S+ \S+/",
"callback": nomad
},
{
"type": "response",
"pattern": ";;hm+",
"pattern": "/hm+/",
"callback": hmm
},
{
"type": "response",
"pattern": ";;!hmmscore",
"pattern": "/!hmmscore(\s|$)/",
"callback": hmmscore
},
{
@ -57,7 +62,7 @@ actions = [
},
{
"type": "response",
"pattern": ";;!whois \S+",
"pattern": "/!whois \S+/",
"callback": whois
}
]

View File

@ -2,13 +2,23 @@ def puppet(self, name, source, response):
botnick = self.bot.botnick
author = self.bot.author
command = response.split("!puppet ")[1]
place, message = command.split("|", 1)
place, message = command.split(" ", 1)
if name != author:
return
self.bot.send_message(place, message)
def inject(self, name, source, response):
botnick = self.bot.botnick
author = self.bot.author
command = response.split("!inject ")[1]
if name != author:
return
self.bot.send(command)
def nomad(self, name, source, response):
botnick = self.bot.botnick
author = self.bot.author

View File

@ -2,10 +2,16 @@ import re
import operator
def hmm(self, name, source, response):
check = response.lower().strip()
botnick = self.bot.botnick
pattern = re.compile("hm+")
matches = re.findall(pattern, response)
score = len(matches)
matches = re.findall(pattern, check)
maximum = 10
score = len(matches) if len(matches) <= maximum else maximum
if len(matches) > 1 and len("".join(re.split(pattern, check))) == 0:
return
if name not in self.bot.memories["users"]:
self.bot.memories["users"][name] = dict()

24
app.py
View File

@ -1,12 +1,30 @@
#!/usr/bin/env python3
from argparse import ArgumentParser
from os.path import dirname, realpath
from bot import Bot, Tasks, Responses
from actions import actions
from coroutines import coroutines
debug = False
parser = ArgumentParser(description="A meta bot for ~team")
parser.add_argument(
"-c",
"--config",
dest="config",
default="settings.json",
help="Load config file"
)
parser.add_argument(
"-d",
"--debug",
dest="debug",
action="store_true",
help="Runs in debug mode"
)
arguments = parser.parse_args()
debug = arguments.debug
kingme = [] if debug else ["#chaos"]
channels = ["#bots", "#insane"]
if not debug:
@ -17,7 +35,7 @@ if not debug:
"#tildeverse"
])
bot = Bot("127.0.0.1", 6667, "BabiliBot", channels)
bot = Bot("127.0.0.1", 6667, channels)
responses = Responses(bot)
tasks = Tasks(bot)
@ -76,7 +94,7 @@ def handle_message(name, source, response):
if __name__ == "__main__":
bot.tasks = tasks
bot.start(dirname(realpath(__file__)), {
bot.start(arguments.config, dirname(realpath(__file__)), {
"pm": handle_pm,
"mode": handle_mode,
"invite": handle_invite,

View File

@ -2,13 +2,21 @@ import re
import json
import socket
import os.path
import logging
from logging.handlers import TimedRotatingFileHandler
logging.basicConfig(
level=logging.DEBUG,
format="[%(levelname)s] [%(asctime)s] >> \n%(message)s",
datefmt="%Y-%m-%d %H:%M:%S"
)
class Bot:
def __init__(self, server, port, botnick, channels):
def __init__(self, server, port, channels):
self.ircsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.logger = logging.getLogger("")
self.server = server
self.port = port
self.botnick = botnick
self.channels = channels
self.running = True
@ -16,18 +24,33 @@ class Bot:
self.places = list()
self.tasks = None
self.author = ""
self.botnick = ""
self.recv_size = 2048
self.splitter = "\n\r"
def send(self, message, *args):
response = message.format(*args) + "\n"
password = self.settings.get("password", None)
if password is not None:
self.logger.info(response.replace(password, "*" * len(password)))
else:
self.logger.info(response)
print("DEBUG: ", response)
self.ircsock.send(response.encode())
def send_message(self, target, message, *args):
msg = message.format(*args)
response = "PRIVMSG {0} :{1}".format(target, msg) + "\n"
password = self.settings.get("password", None)
if password is not None:
self.logger.info(response.replace(password, "*" * len(password)))
else:
self.logger.info(response)
print("DEBUG: ", response)
self.ircsock.send(response.encode())
@ -44,9 +67,15 @@ class Bot:
message = self.ircsock.recv(self.recv_size).decode()
message = message.strip(self.splitter)
print(message)
self.logger.debug(message)
user_list = "= {} :".format(chan)
raw_users = message.split(user_list)[1].split(" \r\n")[0].split(" ")
list_pattern = re.compile("[@=] {} :".format(chan))
user_listing = re.split(list_pattern, message)
if len(user_listing) < 2:
print("DEBUG: Skipping adding users from {}".format(chan))
return
raw_users = user_listing[1].split(" \r\n")[0].split(" ")
prefix_filter = lambda u: u[1:] if "~" in u or "@" in u else u
users = list(filter(prefix_filter, raw_users))
remember = self.memories["users"]
@ -97,9 +126,9 @@ class Bot:
return channel, name
def handle_kick(self, message):
regex = "KICK #\S+ {} :".format(self.botnick)
before, kicker = re.split(regex, message)
return kicker
before, after = message.split("KICK ", 1)
name = self.get_name(before)
return name
def handle_join(self, message):
before, after = message.split("JOIN ", 1)
@ -136,7 +165,8 @@ class Bot:
def load_settings(self, location):
set_vars = [
"author"
"author",
"botnick"
]
path = "{}/{}".format(self.location, location)
@ -151,19 +181,27 @@ class Bot:
self.running = False
self.send("QUIT")
def start(self, location, callback):
def start(self, config, location, callback):
message = ""
registered = False
confirmed = True
self.location = location
self.load_settings(config)
self.load_memories("data/memories.json")
logfile = "{}/logs/{}.log".format(self.location, self.botnick)
logfmt = "[%(levelname)s] [%(asctime)s] >> \n%(message)s"
datefmt = "%Y-%m-%d %H:%M:%S"
logger = TimedRotatingFileHandler(logfile, "midnight", 1)
logger.setLevel(logging.DEBUG)
logger.setFormatter(logging.Formatter(logfmt, datefmt))
self.logger.addHandler(logger)
self.ircsock.connect((self.server, self.port))
self.send("USER {0} {0} {0} {0}", self.botnick)
self.send("NICK {0}", self.botnick)
self.location = location
self.load_settings("settings.json")
self.load_memories("data/memories.json")
password = self.settings["password"] or ""
confirm = self.settings["confirm"] or ""
email = self.settings["email"] or ""
@ -179,6 +217,7 @@ class Bot:
message = self.ircsock.recv(self.recv_size).decode()
message = message.strip(self.splitter)
print(message)
self.logger.debug(message)
if not registered and magic_phrase["has_registered"] in message:
registered = True
if not registered and magic_phrase["needs_to_register"] in message:
@ -204,6 +243,7 @@ class Bot:
message = self.ircsock.recv(self.recv_size).decode()
message = message.strip(self.splitter)
print(message)
self.logger.debug(message)
if "raw" in callback:
callback["raw"](message)
@ -243,4 +283,4 @@ class Bot:
elif "message" in callback:
callback["message"](name, source, response)
elif "unhandled" in callback:
callback["unhandled"](message)
callback["unhandled"](message)

View File

@ -48,24 +48,21 @@ class Responses:
if name not in users:
return False
response = response.lower().strip()
check = {
check = response.lower().strip()
trig = {
"name": name,
"source": source,
"response": response
"response": response.lower().strip()
}
marker = ";;"
mlen = len(marker)
for trigger in list(self.triggers.keys()):
for pattern, callback in self.triggers[trigger].items():
if pattern[:mlen] != marker:
if pattern == response and self.allowed(name, source):
if pattern[0] != "/" and pattern[-1] != "/":
if pattern == check and self.allowed(name, source):
callback(self, name, source, response)
else:
regex = re.compile(pattern[mlen:])
if regex.match(check[trigger]) is not None:
regex = re.compile(pattern[1:-1])
if regex.match(trig[trigger]) is not None:
if self.allowed(name, source):
callback(self, name, source, response)

View File

@ -34,7 +34,7 @@ coroutines = [
"state": {
"alias": "links-comments",
"source": "https://tilde.news/comments.rss",
"use": "summary",
"use": "description",
"channels": ["#tildeverse"]
}
}

View File

@ -49,7 +49,7 @@ class RSS:
self.memory["known"].append(guid)
use = sub(r"(<\/?[^>]+>)|\\n", "", item.findtext(self.use, ""))
use = sub(r"(<\/?[^>]+>)|\n", "", item.findtext(self.use, ""))
user = item.findtext("author", "").split("@")[0]
post = "{} (posted by {}) <{}>".format(use, user, guid)
response = "[{}] {}".format(self.alias, post)
@ -66,4 +66,4 @@ class RSS:
feed = etree.fromstring(response)
items = feed.findall("channel/item")
for item in items:
callback(item)
callback(item)

0
logs/.gitkeep Normal file
View File

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

86991
logs/BabiliBot.log.2018-09-24 Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,395 @@
[INFO] [2018-09-20 13:43:39] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-20 13:43:39] >>
NICK BabiliBot|py
[DEBUG] [2018-09-20 13:43:39] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-20 13:43:39] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-20 13:43:40] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWDE :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-20 13:43:40] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 98 users and 7 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 51 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 77
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 105
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-20 13:43:40] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-20 13:43:40] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-20 13:43:40] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-20 13:43:40] >>
MODE BabiliBot|py +B
[INFO] [2018-09-20 13:43:40] >>
JOIN #bots
[DEBUG] [2018-09-20 13:43:40] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-20 13:43:40] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben BabiliBot|py @khuxkm minerbot2 khuxkm|lounge slipyx jan6|teamweb sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot brendantcc_lounge dustboto zaphod-dev cirno midlow desvox Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-20 13:43:40] >>
JOIN #insane
[DEBUG] [2018-09-20 13:43:40] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens BabiliBot|py aewens|otg BabiliBot
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[INFO] [2018-09-20 14:41:24] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-20 14:41:24] >>
NICK BabiliBot|py
[DEBUG] [2018-09-20 14:41:24] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-20 14:41:24] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-20 14:41:25] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWDL :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-20 14:41:25] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 98 users and 7 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 51 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 77
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 105
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-20 14:41:25] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-20 14:41:25] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-20 14:41:25] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-20 14:41:25] >>
MODE BabiliBot|py +B
[INFO] [2018-09-20 14:41:25] >>
JOIN #bots
[DEBUG] [2018-09-20 14:41:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-20 14:41:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben BabiliBot|py @khuxkm minerbot2 khuxkm|lounge slipyx jan6|teamweb sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot brendantcc_lounge dustboto zaphod-dev cirno midlow desvox Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-20 14:41:25] >>
JOIN #insane
[DEBUG] [2018-09-20 14:41:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens BabiliBot|py aewens|otg BabiliBot
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-20 14:41:33] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-20 14:41:33] >>
PRIVMSG #bots :Hmm score for 'aewens': 207
[DEBUG] [2018-09-20 14:41:33] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :Hmm score for 'aewens': 207
[DEBUG] [2018-09-20 14:41:33] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :ACTION is ignoring BabiliBot|py for reason 'Auto-banished'
[DEBUG] [2018-09-20 14:41:37] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :Hmm
[DEBUG] [2018-09-20 14:41:45] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :Also, interesting xD
[DEBUG] [2018-09-20 14:41:52] >>
:ben!ben@oper.tilde.chat PRIVMSG #bots :oh nice
[DEBUG] [2018-09-20 14:42:08] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-20 14:42:08] >>
PRIVMSG #bots :Hmm score for 'aewens': 207
[DEBUG] [2018-09-20 14:42:08] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :Hmm score for 'aewens': 207
[DEBUG] [2018-09-20 14:42:08] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :ACTION is ignoring BabiliBot|py for reason 'Auto-banished'
[INFO] [2018-09-20 14:43:27] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-20 14:43:27] >>
NICK BabiliBot|py
[DEBUG] [2018-09-20 14:43:27] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-20 14:43:27] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-20 14:43:28] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWDM :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-20 14:43:28] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 98 users and 7 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 51 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 77
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 105
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-20 14:43:28] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-20 14:43:28] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-20 14:43:28] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-20 14:43:28] >>
MODE BabiliBot|py +B
[INFO] [2018-09-20 14:43:28] >>
JOIN #bots
[DEBUG] [2018-09-20 14:43:28] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-20 14:43:28] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben BabiliBot|py @khuxkm minerbot2 khuxkm|lounge slipyx jan6|teamweb sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot brendantcc_lounge dustboto zaphod-dev cirno midlow desvox Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-20 14:43:28] >>
JOIN #insane
[DEBUG] [2018-09-20 14:43:28] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens BabiliBot|py aewens|otg BabiliBot
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-20 14:43:33] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :Hmm
[INFO] [2018-09-20 14:44:32] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-20 14:44:32] >>
NICK BabiliBot|py
[DEBUG] [2018-09-20 14:44:32] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-20 14:44:32] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost)
[DEBUG] [2018-09-20 14:44:33] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWDN :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-20 14:44:33] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 98 users and 7 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 51 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 77
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 105
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-20 14:44:33] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-20 14:44:33] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-20 14:44:33] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-20 14:44:33] >>
MODE BabiliBot|py +B
[INFO] [2018-09-20 14:44:33] >>
JOIN #bots
[DEBUG] [2018-09-20 14:44:33] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-20 14:44:33] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben BabiliBot|py @khuxkm minerbot2 khuxkm|lounge slipyx jan6|teamweb sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot brendantcc_lounge dustboto zaphod-dev cirno midlow desvox Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-20 14:44:33] >>
JOIN #insane
[DEBUG] [2018-09-20 14:44:33] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens BabiliBot|py aewens|otg BabiliBot
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-20 14:44:36] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :Hmm
[DEBUG] [2018-09-20 14:44:38] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-20 14:44:38] >>
PRIVMSG #bots :Hmm score for 'aewens': 208
[DEBUG] [2018-09-20 14:44:38] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :Hmm score for 'aewens': 207
[DEBUG] [2018-09-20 14:44:38] >>
:BabiliBot!BabiliBot@tilde.team PRIVMSG #bots :ACTION is ignoring BabiliBot|py for reason 'Auto-banished'
[DEBUG] [2018-09-20 14:44:42] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :There we go

View File

@ -0,0 +1,292 @@
[INFO] [2018-09-24 17:17:09] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-24 17:17:09] >>
NICK BabiliBot|py
[DEBUG] [2018-09-24 17:17:09] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-24 17:17:09] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-24 17:17:10] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWGK :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-24 17:17:10] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 97 users and 8 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 52 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 79
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 108
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-24 17:17:10] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-24 17:17:10] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-24 17:17:10] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-24 17:17:10] >>
MODE BabiliBot|py +B
[INFO] [2018-09-24 17:17:10] >>
JOIN #bots
[DEBUG] [2018-09-24 17:17:10] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-24 17:17:10] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben @khuxkm minerbot2 khuxkm|lounge slipyx jan6| sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot|py brendantcc_lounge dustboto zaphod-dev cirno midlow Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-24 17:17:10] >>
JOIN #insane
[DEBUG] [2018-09-24 17:17:10] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens aewens|otg BabiliBot|py
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-24 17:17:15] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-24 17:17:24] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-24 17:17:24] >>
NICK BabiliBot|py
[DEBUG] [2018-09-24 17:17:24] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-24 17:17:24] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-24 17:17:25] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWGL :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-24 17:17:25] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 97 users and 8 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 52 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 79
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 108
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-24 17:17:25] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-24 17:17:25] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-24 17:17:25] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-24 17:17:25] >>
MODE BabiliBot|py +B
[INFO] [2018-09-24 17:17:25] >>
JOIN #bots
[DEBUG] [2018-09-24 17:17:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-24 17:17:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben @khuxkm minerbot2 khuxkm|lounge slipyx jan6| sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot|py brendantcc_lounge dustboto zaphod-dev cirno midlow Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-24 17:17:25] >>
JOIN #insane
[DEBUG] [2018-09-24 17:17:25] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens aewens|otg BabiliBot|py
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-24 17:17:27] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-24 17:17:27] >>
PRIVMSG #bots :Hmm score for 'aewens': 212
[DEBUG] [2018-09-24 17:17:30] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscoreboard
[INFO] [2018-09-24 17:17:30] >>
PRIVMSG #bots :Hmm score for 'aewens': 212
[INFO] [2018-09-24 17:17:30] >>
PRIVMSG #bots :Hmm Score Leaderboard: jan6 382 | ben 303 | aewens 212
[INFO] [2018-09-24 17:18:08] >>
USER BabiliBot|py BabiliBot|py BabiliBot|py BabiliBot|py
[INFO] [2018-09-24 17:18:08] >>
NICK BabiliBot|py
[DEBUG] [2018-09-24 17:18:08] >>
:team.tilde.chat NOTICE Auth :*** Looking up your hostname...
[DEBUG] [2018-09-24 17:18:08] >>
:team.tilde.chat NOTICE Auth :*** Found your hostname (localhost) -- cached
[DEBUG] [2018-09-24 17:18:09] >>
:team.tilde.chat NOTICE Auth :Welcome to tilde.chat!
:team.tilde.chat 001 BabiliBot|py :Welcome to the tilde.chat IRC Network BabiliBot|py!BabiliBot|p@localhost
:team.tilde.chat 002 BabiliBot|py :Your host is team.tilde.chat, running version InspIRCd-2.0
:team.tilde.chat 003 BabiliBot|py :This server was created 13:26:16 Jun 18 2018
:team.tilde.chat 004 BabiliBot|py team.tilde.chat InspIRCd-2.0 BIRiorsw MRabfhiklmnopqrstvz abfhkloqv
:team.tilde.chat 005 BabiliBot|py AWAYLEN=200 CASEMAPPING=rfc1459 CHANMODES=b,k,fl,MRimnprstz CHANNELLEN=64 CHANTYPES=# CHARSET=ascii ELIST=MU EXTBAN=,RUz FNC KICKLEN=255 MAP MAXBANS=60 MAXCHANNELS=100 :are supported by this server
:team.tilde.chat 005 BabiliBot|py MAXPARA=32 MAXTARGETS=20 MODES=20 NETWORK=tilde.chat NICKLEN=31 PREFIX=(qaohv)~&@%+ SSL=[::]:6697 STATUSMSG=~&@%+ TOPICLEN=307 VBANLIST WALLCHOPS WALLVOICES :are supported by this server
:team.tilde.chat 042 BabiliBot|py 674AAAWGM :your unique ID
:team.tilde.chat 375 BabiliBot|py :team.tilde.chat message of the day
:team.tilde.chat 372 BabiliBot|py :- __ __ _ __ __ __ __
:team.tilde.chat 372 BabiliBot|py :- / /____ ____ _____ ___ / /_(_) /___/ /__ _____/ /_ ____ _/ /_
:team.tilde.chat 372 BabiliBot|py :- / __/ _ \/ __ `/ __ `__ \ / __/ / / __ / _ \ / ___/ __ \/ __ `/ __/
:team.tilde.chat 372 BabiliBot|py :- / /_/ __/ /_/ / / / / / // /_/ / / /_/ / __// /__/ / / / /_/ / /_
:team.tilde.chat 372 BabiliBot|py :- \__/\___/\__,_/_/ /_/ /_(_)__/_/_/\__,_/\___(_)___/_/ /_/\__,_/\__/
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- welcome to tilde.chat (this node hosted on tilde.team)
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- check out the appropriate channel for your tilde:
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- - tilde.team => #team
:team.ti
[DEBUG] [2018-09-24 17:18:09] >>
lde.chat 372 BabiliBot|py :- - tilde.town => #town
:team.tilde.chat 372 BabiliBot|py :- - yourtilde => #your
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- the main lobby channel is #meta. check /list for the other channels
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- msg an oper if you need anything and
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- ~~ be excellent to each other ~~
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 372 BabiliBot|py :- connecting and chatting here implies agreement with the code of conduct:
:team.tilde.chat 372 BabiliBot|py :- https://tilde.team/wiki/?page=code-of-conduct
:team.tilde.chat 372 BabiliBot|py :-
:team.tilde.chat 376 BabiliBot|py :End of message of the day.
:team.tilde.chat 251 BabiliBot|py :There are 97 users and 8 invisible on 4 servers
:team.tilde.chat 252 BabiliBot|py 2 :operator(s) online
:team.tilde.chat 254 BabiliBot|py 52 :channels formed
:team.tilde.chat 255 BabiliBot|py :I have 77 clients and 3 servers
:team.tilde.chat 265 BabiliBot|py :Current Local Users: 77 Max: 79
:team.tilde.chat 266 BabiliBot|py :Current Global Users: 105 Max: 108
:team.tilde.chat NOTICE BabiliBot|py :Setting your virtual host: tilde.team
:team.tilde.chat 396 BabiliBot|py tilde.team :is now your displayed host
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :This nickname is registered and protected. If it is your
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :nick, type /msg NickServ IDENTIFY password. Otherwise,
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :please choose a different nick.
[INFO] [2018-09-24 17:18:09] >>
PRIVMSG NickServ :IDENTIFY ************************
[DEBUG] [2018-09-24 17:18:09] >>
:NickServ!services@services.tilde.chat NOTICE BabiliBot|py :Password accepted - you are now recognized.
:team.tilde.chat 900 BabiliBot|py BabiliBot|py!BabiliBot|p@tilde.team BabiliBot|py :You are now logged in as BabiliBot|py
[DEBUG] [2018-09-24 17:18:09] >>
:NickServ!services@services.tilde.chat MODE BabiliBot|py +r
[INFO] [2018-09-24 17:18:09] >>
MODE BabiliBot|py +B
[INFO] [2018-09-24 17:18:09] >>
JOIN #bots
[DEBUG] [2018-09-24 17:18:09] >>
:BabiliBot|py!BabiliBot|p@tilde.team MODE BabiliBot|py +B
[DEBUG] [2018-09-24 17:18:09] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#bots
:team.tilde.chat 332 BabiliBot|py #bots :put your bots here thanks https://tilde.team/wiki/?page=irc-bots
:team.tilde.chat 333 BabiliBot|py #bots ben 1534775838
:team.tilde.chat 353 BabiliBot|py = #bots :endorphant rain1 aewens ~ben @khuxkm minerbot2 khuxkm|lounge slipyx jan6| sedbot freeappsw desvox_ TildeBot aewens|otg dustbot BabiliBot|py brendantcc_lounge dustboto zaphod-dev cirno midlow Clefable
:team.tilde.chat 366 BabiliBot|py #bots :End of /NAMES list.
[INFO] [2018-09-24 17:18:09] >>
JOIN #insane
[DEBUG] [2018-09-24 17:18:09] >>
:BabiliBot|py!BabiliBot|p@tilde.team JOIN :#insane
:team.tilde.chat 332 BabiliBot|py #insane :"BECAUSE SOMETIMES YOU WANT TO BE INSANE INSTEAD OF CHAOTIC"
:team.tilde.chat 333 BabiliBot|py #insane aewens 1534047048
:team.tilde.chat 353 BabiliBot|py @ #insane :~aewens aewens|otg BabiliBot|py
:team.tilde.chat 366 BabiliBot|py #insane :End of /NAMES list.
[DEBUG] [2018-09-24 17:18:12] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscoreboard
[INFO] [2018-09-24 17:18:12] >>
PRIVMSG #bots :Hmm Score Leaderboard: jan6 382 | ben 303 | aewens 212
[DEBUG] [2018-09-24 17:18:14] >>
:aewens!aewens@rightful.heir.to.chaos PRIVMSG #bots :!hmmscore
[INFO] [2018-09-24 17:18:14] >>
PRIVMSG #bots :Hmm score for 'aewens': 212

View File

@ -1,5 +1,8 @@
{
"botnick": "",
"password": "",
"email": "",
"confirm": ""
}
"confirm": "",
"author": "",
"extras": {}
}