Hi all, I have been trying to add a kick command to pyborg-irc and cant figure out how to do it, the annoying thing is if I could figure this command out, I could then figure out several other commands, the script im using is quite long so I upped it to paste bin here http://pastebin.com/f3039a4c
the part of the code I added is this part
# kick nick from channel
elif command_list[0] == "!kick":
for x in xrange(1, len(command_list)):
if not command_list[x] in self.chans:
msg = "%s will be kicked from %s"
If anyone could help me out with this I would be greatful, :)
MadS