fulvia/modules/pingall.py

18 lines
429 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.
"""
nicks = list(bot.channels[trigger.channel].users.keys())
for nigger in ["Ishd", "Ishd2", "Ishd_"]:
if nigger in nicks:
nicks.remove(nigger)
bot.msg(" ".join(nicks))