Files
ninachloe/FaustBot/Modules/First_Greeter.py
T

31 lines
1.0 KiB
Python

from FaustBot.Communication.Connection import Connection
from FaustBot.Modules.JoinObserverPrototype import JoinObserverPrototype
from FaustBot.Model.UserProvider import UserProvider
from time import sleep
class First_Greeter(JoinObserverPrototype):
"""
A Class only reacting to pings
"""
@staticmethod
def cmd():
return None
@staticmethod
def help():
return None
def __init__(self, greeting):
super().__init__()
self.first_greeting = greeting
def update_on_join(self, data, connection: Connection):
if data['channel'] == connection.details.get_channel():
if data['nick'].find("Guest") != -1:
sleep(20)
connection.send_back(self.first_greeting + " " + data['nick'], data)
return
UProvider= UserProvider()
if(UProvider.get_characters(data['nick'])) < 100:
sleep(20)
connection.send_back(self.first_greeting + " " + data['nick'], data)