Forums - Open Redstone Engineers
MalcyBot - Printable Version

+- Forums - Open Redstone Engineers (https://forum.openredstone.org)
+-- Forum: Off-Topic (https://forum.openredstone.org/forum-4.html)
+--- Forum: Programming (https://forum.openredstone.org/forum-8.html)
+--- Thread: MalcyBot (/thread-1983.html)



MalcyBot - Malcolmforde - 01-14-2014

ITS PRONOUNCED MAL-SEE, SHE IS FEMALE. MY GOD.

Prepare for the IRC bot that is going to make the server barf. And the code will probably make someone barf. PYTHON CODE ACTIVATE!
Code:
import socket
import sys
from time import sleep
from random import randint

server = "irc.freenode.net"       #settings
channel = "#OREServerChat"
botnick = "MalcyBot"
cmdsign = "."
password = randint(1000*10, 1000**10)
print "Le password to quit! Important! "+str(password)

irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "Now connecting! "+server
irc.connect((server, 6667))
irc.send("USER "+ botnick +" "+ botnick +" "+ botnick +" :Le Bot Of Le Malc\n")
irc.send("NICK "+ botnick +"\n")
irc.send("PRIVMSG nickserv : /say\r\n")
irc.send("JOIN "+ channel +"\n")

irc.send("PRIVMSG "+channel+" :Hi! I have no idea why PONG shows up here: ")

while True:
    text = irc.recv(2040)
    if text.find('PING') != -1: #Le Ping For Le Server
        irc.send('PONG ' + text.split() [1] + '\r\n')

    if text.find(cmdsign+"hi") != -1: #Le Hi
        irc.send('PRIVMSG '+channel+' :Hello, sir!\r\n')

    if text.find(cmdsign+"pay") != -1: #Le Pay
        t = text.split(cmdsign+"pay")
        to = t[1].strip()
        if to == "":
            irc.send("PRIVMSG "+channel+" :Error! No person.\r\n")
        else:
            irc.send("PRIVMSG "+channel+" :Random Robot prints lots and lots of money and gives it to "+str(to)+" because why the heck not.\r\n")

    if text.find(cmdsign+"apply") != -1:
        irc.send("PRIVMSG "+channel+" :Hello, newblet! At least, I assume you are a newblet because you asked how to apply.\r\n")
        irc.send("PRIVMSG "+channel+" :Applying is easy-peasy. Just follow this guide:\r\n")
        irc.send("PRIVMSG "+channel+" :http://openredstone.org/apply/\r\n")
        irc.send("PRIVMSG "+channel+" :Good luck!\r\n")

    if text.find(cmdsign+"quit:"+str(password)) != -1: #Le Quit
        irc.send("PRIVMSG "+channel+" :Good bye suckers!\r\n")
        irc.send("QUIT\r\n")
        exit()

    sleep(.5)

You don't need to have the commands seperate from other text, so you could type things like:
"Welcome! Say .hi, Malcy!" and he will say hi. Or:
"Dude, just .apply." and Malcy will tell the noob how to apply.
But that feature is probably going to cause Malcy to break a lot.

The password for quitting is a random number between 1000*10 and 1000^10, newly generated on each startup. So, to quit, it would be: .quit:[pass]
When I add more passworded commands, there is always going to be a semicolon right after where you put your password, so the password is kind of like "part of the command" (Yeah, I know, its stupid.)


RE: MalcyBot - tokumei - 01-14-2014

*throws up all over the code*
Y u have so many formatting issues & bugs???
Also, I suggest using gist or pastebin next time you upload code.


RE: MalcyBot - Malcolmforde - 01-14-2014

(01-14-2014, 03:19 PM)EinsteinTRG Wrote: *throws up all over the code*
Y u have so many formatting issues & bugs???
Also, I suggest using gist or pastebin next time you upload code.

*gists it*
https://gist.github.com/Quojil/8419774


RE: MalcyBot - Jmking80 - 01-14-2014

in the gist you forgot the imports, you silly.
Btw I already made a clone of it Big Grin

WHY PYTHON?!
*learning it just for the heck of it*


RE: MalcyBot - AFtExploision - 01-14-2014

Code:
irc.send("QUIT\r\n")
should be something like
Code:
irc.send("QUIT User Forced Quit\r\n")
Also, when sending messages I suggest you add a space between the ":" and message for the sake of keeping everything neat. Line 16 you forget the "\r\n". Also, why are you using text.contains() or whatever that method is?


RE: MalcyBot - Jmking80 - 01-15-2014

I think malcolm used .contains because with each message the irc server sends A LOT of information
doing .contains() method makes it very easy to find certain keywords, like .pay and .apply


RE: MalcyBot - Jmking80 - 01-16-2014

Ehm malcolm, the NICK command sould be send before the USER command.


RE: MalcyBot - WrytXander - 01-19-2014

I think this is the exact same framework as the one in http://stackoverflow.com/questions/2968408/how-do-i-program-a-simple-irc-bot-in-python
Oh well Big Grin

You got custom functions in a default framwork, that is good practice I suppose


RE: MalcyBot - tokumei - 01-19-2014

Also, learn how to use the % string operator. It's very useful and makes the code more concise