Compare commits

...

2 Commits

Author SHA1 Message Date
Honza
aa673b5238 some changes it should work 2024-03-15 17:38:15 +01:00
Honza
7512bd339d sus 2024-03-15 17:31:36 +01:00

View File

@ -180,8 +180,13 @@ async def help_command(message): #help script
embed1.add_field(name = "~count", value="-- Ask for word count of users: ~count <word>", inline = False)
embed2 = discord.Embed(title = "__Functions__" ,description = None, colour = discord.Colour.red())
embed.addfield(name="")
embed2.addfield(name = "Well behaved", value="Bot will greet you back")
embed2.addfield(name = "Significant recognicition of sussynes", value = None)
embed2.addfield(name = "Word counting ability", value = None)
await message.channel.send(embed = embed1)
await message.channel.send(embed = embed2)
#
#
@ -230,12 +235,6 @@ async def sus_function(message): #sus function
##################################### FUNCTIONS AND COMMANDS HUB #############################################
##############################################################################################################
slova = ["nigga", "negr", "debil", "gay", "kokot", "ok", "kurva", "sus", "petr", "gej", "bruh", "bružek"] #words bot recognize and count
sus_responses = ["it's getting sus here", "sus", "you are sussy", "sussy baka", "that is kinda sus", "that is sus", "you're seeming sus lately", "seems sus", "SUS", "gobus amogus", "amongsus", "sussy ah", "sussy"] #variety of responses when sus detection
greetings =['čau', 'ahoj', 'hi', 'hello', 'high', 'čauky', 'nazdar', 'dobrý den','helou'] #greetings which bot will reply to
##############################################################################################################
##################################### RUNNING THE FUNCTIONS AND COMMANDS #####################################
##############################################################################################################
@ -255,7 +254,7 @@ async def on_message(message):
await sus_function(message)
await word_counter(message)
await client.process_commands(message)
await client.process_commands(message) #this line is very fuqacking important
@client.command()