19 lines
430 B
Python
Executable File
19 lines
430 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Pings everyone in the channel.
|
|
"""
|
|
from module import commands
|
|
|
|
@commands('pingall', 'names')
|
|
def pingAll(bot, trigger):
|
|
"""
|
|
Says the nick of everyone in the channel. Great way to get thier
|
|
attention, or just annoy them.
|
|
"""
|
|
names = list(bot.channels[trigger.channel].users.keys())
|
|
if "Ishd" in names:
|
|
names.remove("Ishd")
|
|
if "Ishd2" in names:
|
|
names.remove("Ishd2")
|
|
bot.msg(" ".join(names))
|