This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
import random, os, time | |
from colorama import Fore, Back, Style | |
@dataclass | |
class Character(): | |
name: str | |
__atq: int | |
__hp: int | |
__potions: int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord.ext import commands | |
from discord_webhook import DiscordWebhook, DiscordEmbed | |
import requests, os, datetime | |
print("Version 2.0 by enzomtp") | |
webhook_url = "" | |
# Verify and create count.txt file if it doesn't exist | |
if not os.path.exists("count.txt"): | |
with open("count.txt", "w") as file: | |
file.write("0") | |
# create temp folder if it doesn't already exists or empty it if it does |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! | |
]] | |
-- Dark Dex -- | |
if game:GetService'CoreGui':FindFirstChild'Dex' then | |
game:GetService'CoreGui'.Dex:Destroy(); | |
end | |
math.randomseed(tick()) |