al contadin non far sapere quanto è buono il cacio con le pere
This commit is contained in:
parent
a9bb734759
commit
7fcb4086fa
1 changed files with 8 additions and 2 deletions
10
tubiabot.rb
10
tubiabot.rb
|
@ -1,5 +1,6 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
require 'cinch'
|
require 'cinch'
|
||||||
|
require 'marky_markov'
|
||||||
|
|
||||||
class ToniNegri
|
class ToniNegri
|
||||||
include Cinch::Plugin
|
include Cinch::Plugin
|
||||||
|
@ -59,6 +60,10 @@ class Salvino
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
logger = File.open("./logs.txt", 'a+')
|
||||||
|
markov = MarkyMarkov::TemporaryDictionary.new
|
||||||
|
markov.parse_file './logs.txt'
|
||||||
|
|
||||||
bot = Cinch::Bot.new do
|
bot = Cinch::Bot.new do
|
||||||
configure do |c|
|
configure do |c|
|
||||||
c.server = "irc.mufhd0.net"
|
c.server = "irc.mufhd0.net"
|
||||||
|
@ -68,12 +73,13 @@ bot = Cinch::Bot.new do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
logger = File.open("./logs.txt", 'a+')
|
|
||||||
|
|
||||||
bot.on :message do |m|
|
bot.on :message do |m|
|
||||||
if m.user.nick == "Tubia87"
|
if m.user.nick == "Tubia87"
|
||||||
logger.write(m.message+"\n")
|
logger.write(m.message+"\n")
|
||||||
end
|
end
|
||||||
|
if m.message.include?(@bot.nick) and !@bot.user_list.include?("Tubia87")
|
||||||
|
m.reply markov.generate_n_sentences 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
bot.start
|
bot.start
|
||||||
|
|
Loading…
Reference in a new issue