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 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* *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 ![]() WHY PYTHON?! *learning it just for the heck of it* RE: MalcyBot - AFtExploision - 01-14-2014 Code: irc.send("QUIT\r\n") Code: irc.send("QUIT User Forced Quit\r\n") 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 ![]() 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 |