This commit is contained in:
lickthecheese 2020-04-19 19:25:07 -04:00
parent 9d1bc6e053
commit ad34e105f8
3 changed files with 11 additions and 31 deletions

View File

@ -1,2 +1,6 @@
# oven-bot
irc bot to cook virtual food i guess
# Kim
A bot that uses weighted topic identifiers, and markov to make intresting and amusing conversations.
Based on the the idea of [RealAI](https://github.com/oblivionburn/RealAI), however it does not use any
of RealAI's code.

View File

@ -1,15 +0,0 @@
#!/bin/bash
echo ~/irclogs/tc/* | tr " " "\n" | shuf | tr "\n" " " | xargs cat | grep '>' | awk '{$1=""; $2=""; $3=""}1' | tail -n 80000 > /tmp/markylol
nextword(){ awk '{for (I=1;I<=NF;I++) if ($I == "'$1'") {print $(I+1)};}' /tmp/markylol | shuf -n 1 ; }
PASTWORD=$1
makesent(){ printf "$PASTWORD " ; PASTWORD=`nextword $PASTWORD | tr '"' "'"` ; [ -z "$PASTWORD" ] || makesent ; }
makesent
echo

19
bot.py
View File

@ -12,7 +12,6 @@ class Oven(pydle.Client):
self.raw = {}
self.help = {}
self.timeout=time.time()+1
print('loading modules...')
await self.loadMods()
@ -38,20 +37,11 @@ class Oven(pydle.Client):
async def on_message(self, chan, source, msg):
if source != self.nickname:
if msg == '!botlist':
await self.message(chan, 'hoinlo im oven im owned by lickthecheese and bake stuff for you and other beep boop fun stuff')
await self.message(chan, 'dah helooooooo i am kim jong un, pingus me to have a nice conversation')
for i in self.raw:
await self.raw[i](self, chan,source,msg)
if msg[:len(self.prefix)] == self.prefix:
if time.time() < self.timeout:
self.timeout += 1
print('messages are being sent too fast! ({}s)'.format(self.timeout-time.time()))
if await self.is_admin(source) and msg == '{}recv'.format(self.prefix):
self.timeout = 0
return
if time.time()-1.5 < self.timeout:
await self.message(chan, 'woah woah, slow it down there, or il get mad and wont bake your food')
self.timeout = time.time()+0.5
msg = msg[len(self.prefix):]
cmd = msg.split(' ')[0]
msg = msg[len(cmd)+1:]
@ -70,12 +60,13 @@ class Oven(pydle.Client):
async def on_private_message(self, trash, source, msg):
if source != self.nickname:
await self.on_message(source, source, msg)
for i in self.raw:
await self.raw[i](self, source, source, msg)
if __name__ == "__main__":
client = Oven('oven', realname='Oven IRC Bot')
client = Oven('kim', realname='Kim Jong Un?')
client.admins = ['lickthecheese', 'ben', 'cmccabe']
client.prefix = 'ov '
client.prefix = 'kim: '
client.run('team.tilde.chat', tls=True, tls_verify=False)