2018-03-16 03:13:43 -04:00
|
|
|
#!/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.
|
|
|
|
"""
|
2019-10-08 11:45:21 -04:00
|
|
|
nicks = list(bot.channels[trigger.channel].users.keys())
|
2018-12-15 20:37:40 -05:00
|
|
|
for nigger in ["Ishd", "Ishd2", "Ishd_"]:
|
2019-10-08 11:45:21 -04:00
|
|
|
if nigger in nicks:
|
|
|
|
nicks.remove(nigger)
|
|
|
|
bot.msg(" ".join(nicks))
|