fulvia/modules/pingall.py

17 lines
454 B
Python
Raw Permalink Normal View History

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.
"""
nicks = list(bot.channels[trigger.channel].users.keys())
2020-01-08 07:51:00 -05:00
second_class_citizens = ["Ishd", "Ishd2", "Ishd_"]
nicks = [n for n in nicks if n not in second_class_citizens]
bot.msg(" ".join(nicks))