/new/donna.py
Python | 69 lines | 50 code | 18 blank | 1 comment | 10 complexity | 1a3a557bed3d449a224c2aebab53c822 MD5 | raw file
- import socket
- import random
- import subprocess
- from subprocess import Popen
- # Some basic variables used to configure the bot
- server = "reinoutclaeys.be" # Server
- channel = "#test" # Channel
- botnick = "donna" # Your bots nick
- def ping(): # This is our first function! It will respond to server Pings.
- ircsock.send("PONG :pingis\n")
- def sendmsg(chan , msg): # This is the send message function, it simply sends messages to the channel.
- ircsock.send("PRIVMSG "+ chan +" :"+ msg +"\n")
- def joinchan(chan): # This function is used to join channels.
- ircsock.send("JOIN "+ chan +"\n")
- def hello(): # This function responds to a user that inputs "Hello Mybot"
- ircsock.send("PRIVMSG "+ channel +" :Hello!\n")
- def gtfo():
- ircsock.send("PRIVMSG "+ channel +" :GTFO!\n")
- def restart():
- ircsock.send("PRIVMSG "+ channel +" :Niet met mij! Norma eerst!\n")
- Popen("python /home/bumbolt/Documents/git-repos/donna/reloader.py", shell=True) # start reloader
- exit("exit for updating all files")
- def ewout():
- numb = random.randint(0,3)
- if numb == 0:
- ircsock.send("PRIVMSG"+ channel+ " :Niet kijken, Ammoboy!\n")
- if numb == 1:
- ircsock.send("PRIVMSG"+ channel+ " :Eeeeikes!\n")
- if numb == 2:
- ircsock.send("PRIVMSG"+ channel+ " :Viezerikken\n")
-
- ircsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- ircsock.connect((server, 6667)) # Here we connect to the server using the port 6667
- ircsock.send("USER "+ botnick +" "+ botnick +" "+ botnick +" :This bot is a result of a tutoral covered on http://shellium.org/wiki.\n") # user authentication
- ircsock.send("NICK "+ botnick +"\n") # here we actually assign the nick to the bot
- joinchan(channel) # Join the channel using the functions we previously defined
- while 1: # Be careful with these! it might send you to an infinite loop
- ircmsg = ircsock.recv(2048) # receive data from the server
- ircmsg = ircmsg.strip('\n\r') # removing any unnecessary linebreaks.
- print(ircmsg) # Here we print what's coming from the server
- if ircmsg.find(":Hello "+ botnick) != -1: # If we can find "Hello Mybot" it will call the function hello()
- hello()
- if ircmsg.find("PING :") != -1: # if the server pings us then we've got to respond!
- ping()
- if ircmsg.find(":teemo") != -1:
- gtfo()
- if ircmsg.find(":9gag") != -1:
- gtfo()
- if ircmsg.find(":sex") != -1:
- ewout()
- if ircmsg.find(":!restart") != -1:
- restart()