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

@ -173,15 +173,20 @@ async def scprove_command(message): #scientists prove that... sc
async def help_command(message): #help script async def help_command(message): #help script
embed1 = discord.Embed(title = "__Commands__" ,description = None, colour=discord.Colour.red()) embed1 = discord.Embed(title = "__Commands__" ,description = None, colour=discord.Colour.red())
embed1.set_author(name=client.user.name) embed1.set_author(name=client.user.name)
embed1.add_field(name="~help", value="-- Command that will show you this list", inline = False) embed1.add_field(name = "~help", value = "-- Command that will show you this list", inline = False)
embed1.add_field(name="~etime", value="-- Command that will tell you the time :)", inline = False) embed1.add_field(name = "~etime", value ="-- Command that will tell you the time :)", inline = False)
embed1.add_field(name="~scprove", value="-- Scientist will prove you anything: ~scprove <text here>", inline = False) embed1.add_field(name = "~scprove", value = "-- Scientist will prove you anything: ~scprove <text here>", inline = False)
embed1.add_field(name="~primenum", value="-- Bot will tell you if number is a prime number", inline = False) embed1.add_field(name = "~primenum", value ="-- Bot will tell you if number is a prime number", inline = False)
embed1.add_field(name="~count", value="-- Ask for word count of users: ~count <word>", inline = False) 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()) 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")
await message.channel.send(embed=embed1) 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 ############################################# ##################################### 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 ##################################### ##################################### RUNNING THE FUNCTIONS AND COMMANDS #####################################
############################################################################################################## ##############################################################################################################
@ -255,7 +254,7 @@ async def on_message(message):
await sus_function(message) await sus_function(message)
await word_counter(message) await word_counter(message)
await client.process_commands(message) await client.process_commands(message) #this line is very fuqacking important
@client.command() @client.command()