mirror of
https://github.com/Death916/combo.git
synced 2026-04-10 03:04:41 -07:00
combo command
This commit is contained in:
parent
f20e8d9f4d
commit
6384f3ed3d
1 changed files with 11 additions and 2 deletions
11
combo.py
11
combo.py
|
|
@ -10,6 +10,8 @@ logout = "bye " + nick
|
||||||
password = "combo916"
|
password = "combo916"
|
||||||
combo = 0
|
combo = 0
|
||||||
last_nick = ""
|
last_nick = ""
|
||||||
|
exit_code = "!cquit"
|
||||||
|
|
||||||
def connect():
|
def connect():
|
||||||
sock.connect((server, 6667))
|
sock.connect((server, 6667))
|
||||||
sock.send(bytes("USER " + nick +" "+ nick + " " + nick + " " + nick + "\n", "UTF-8"))
|
sock.send(bytes("USER " + nick +" "+ nick + " " + nick + " " + nick + "\n", "UTF-8"))
|
||||||
|
|
@ -55,8 +57,15 @@ def main():
|
||||||
else:
|
else:
|
||||||
if name == last_nick:
|
if name == last_nick:
|
||||||
combo += 1
|
combo += 1
|
||||||
send(name + " is on a " + str(combo) + "combo")
|
|
||||||
|
|
||||||
|
if message.find("!combo"):
|
||||||
|
send(name + " is on a " + str(combo) + "combo")
|
||||||
|
else:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if name.lower() == admin.lower() and message.rstrip() == exit_code:
|
||||||
|
sock.send(bytes("QUIT \n", "UTF-8"))
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue