fulvia/modules/ban_join.py

22 lines
457 B
Python
Raw Normal View History

2024-10-15 09:24:11 -04:00
#!/usr/bin/env python3
"""
Bans a user as soon as they join a channel.
"""
import time
from module import user_joined
from tools import configureHostMask
@user_joined(True)
def ban_join(bot, trigger):
"""
Bans a user as soon as they join a channel.
"""
banhee = trigger.nick
banmask = configureHostMask(banhee)
period = 30
bot.mode(trigger.channel, True, "b", mask=banmask)
time.sleep(period)
bot.mode(trigger.channel, False, "b", mask=banmask)