This file contains hidden or 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
CREATE TABLE client( | |
idClient INT, | |
nomClient VARCHAR(50) NOT NULL, | |
prenomClient VARCHAR(50) NOT NULL, | |
dateNaissanceClient DATE, | |
sexeClient INT, | |
telClient INT, | |
mailClient VARCHAR(50), | |
adresse1Client VARCHAR(50) NOT NULL, | |
adresse2Client VARCHAR(50) NOT NULL, |
This file contains hidden or 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()) |
This file contains hidden or 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 hidden or 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 |