mirror of
https://github.com/TotalFreedomMC/TotalFreedomBot.git
synced 2024-12-22 15:44:57 +00:00
Update main.py
This commit is contained in:
parent
29118036bb
commit
da81f4ad37
1 changed files with 25 additions and 6 deletions
31
main.py
31
main.py
|
@ -17,8 +17,8 @@ load_dotenv()
|
||||||
botToken = os.getenv('botToken')
|
botToken = os.getenv('botToken')
|
||||||
|
|
||||||
intents = discord.Intents.all()
|
intents = discord.Intents.all()
|
||||||
bot = commands.Bot(command_prefix=get_prefix, case_insensitive=True, description='TotalFreedom bot help command', intents=intents)
|
bot = commands.Bot(command_prefix=get_prefix, case_insensitive=True, description='TotalFreedom bot help command',
|
||||||
|
intents=intents)
|
||||||
|
|
||||||
extensions = [
|
extensions = [
|
||||||
"commands.moderation",
|
"commands.moderation",
|
||||||
|
@ -44,10 +44,11 @@ async def on_message(message):
|
||||||
if isinstance(message.channel, discord.channel.DMChannel):
|
if isinstance(message.channel, discord.channel.DMChannel):
|
||||||
print(f'{message.author} DM: {message.content}')
|
print(f'{message.author} DM: {message.content}')
|
||||||
return
|
return
|
||||||
if message.guild and message.author is message.guild.me and message.channel.id == reports_channel_id:
|
elif message.guild and message.author is message.guild.me and message.channel.id == reports_channel_id:
|
||||||
await message.add_reaction(clipboard)
|
await message.add_reaction(clipboard)
|
||||||
if message.type == discord.MessageType.new_member:
|
elif message.type == discord.MessageType.new_member:
|
||||||
if re.search('discord\.gg\/[a-zA-z0-9\-]{1,16}', message.author.name.lower()) or re.search('discordapp\.com\/invite\/[a-z0-9]+/ig', message.author.name.lower()):
|
if re.search('discord\.gg\/[a-zA-z0-9\-]{1,16}', message.author.name.lower()) or re.search(
|
||||||
|
'discordapp\.com\/invite\/[a-z0-9]+/ig', message.author.name.lower()):
|
||||||
await message.author.ban(reason="Name is an invite link.")
|
await message.author.ban(reason="Name is an invite link.")
|
||||||
await message.delete()
|
await message.delete()
|
||||||
bypass_roles = [discord_admin, discord_mod]
|
bypass_roles = [discord_admin, discord_mod]
|
||||||
|
@ -57,6 +58,12 @@ async def on_message(message):
|
||||||
if role.id in bypass_roles:
|
if role.id in bypass_roles:
|
||||||
bypass = True
|
bypass = True
|
||||||
else:
|
else:
|
||||||
|
server_chats = {1: server_chat, 2: server_chat_2}
|
||||||
|
for server in range(1, len(server_chats)):
|
||||||
|
if message.channel.id == server_chats[server]:
|
||||||
|
if not get_server_status(server):
|
||||||
|
hit_endpoint('start', server)
|
||||||
|
|
||||||
if 'Server has started' in message.content: # Telnet reconnect script
|
if 'Server has started' in message.content: # Telnet reconnect script
|
||||||
try:
|
try:
|
||||||
bot.telnet_object.connect()
|
bot.telnet_object.connect()
|
||||||
|
@ -68,11 +75,23 @@ async def on_message(message):
|
||||||
except Exception as fuckup:
|
except Exception as fuckup:
|
||||||
print(
|
print(
|
||||||
f'Second attempt failed to reconnect telnet: {fuckup}')
|
f'Second attempt failed to reconnect telnet: {fuckup}')
|
||||||
|
try:
|
||||||
|
bot.telnet_object_2.connect()
|
||||||
|
except Exception as e:
|
||||||
|
print(f'Failed to reconnect telnet 2: {e}')
|
||||||
|
time.sleep(5)
|
||||||
|
try:
|
||||||
|
bot.telnet_object_2.connect()
|
||||||
|
except Exception as fuckup:
|
||||||
|
print(
|
||||||
|
f'Second attempt failed to reconnect telnet 2: {fuckup}')
|
||||||
if not bypass:
|
if not bypass:
|
||||||
if re.search('discord\.gg\/[a-zA-z0-9\-]{1,16}', message.content) or re.search('discordapp\.com\/invite\/[a-z0-9]+/ig', message.content):
|
if re.search('discord\.gg\/[a-zA-z0-9\-]{1,16}', message.content) or re.search(
|
||||||
|
'discordapp\.com\/invite\/[a-z0-9]+/ig', message.content):
|
||||||
await message.delete()
|
await message.delete()
|
||||||
await message.channel.send(f"{message.author.mention} do not post invite links to other discord servers.")
|
await message.channel.send(f"{message.author.mention} do not post invite links to other discord servers.")
|
||||||
|
|
||||||
await bot.process_commands(message)
|
await bot.process_commands(message)
|
||||||
|
|
||||||
|
|
||||||
bot.run(botToken)
|
bot.run(botToken)
|
||||||
|
|
Loading…
Reference in a new issue