-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
from utils import rpc | ||
####################### | ||
# selfbot # | ||
# basic # | ||
# config ^^ # | ||
####################### | ||
|
||
# en: SelfBot name | ||
# fr: Nom du SelfBot | ||
selfbot_name = "PolyBius" # Tip: Don't use the "Selfbot" word into your selfbot name, most of servers blacklist this word with AutoMod | ||
|
||
# en: Account Token. | ||
# fr: Token du compte. | ||
token = "" | ||
|
||
# en: Commands prefix. | ||
# fr: Prefix des commandes. | ||
prefix = "*" | ||
|
||
# fr: Langue. | ||
# en: Language. | ||
lang = "en" # fr / en | ||
|
||
# fr: Activer/Désactiver les logs de discord (ex: Connected to gateway , Rate Limited etc..). | ||
# en: Toggle discord logs (like: Connected to gateway, Rate Limited etc...). | ||
discord_log = True | ||
|
||
# fr: Default Nitro Sniper mode. (True=On, False=Off) | ||
# fr: Mode du Nitro Sniper par défaut. (True=On, False=Off) | ||
nitro_sniper = False | ||
|
||
# en: Commands delay of delete. | ||
# fr: Délai de supression des commandes. | ||
deltime = 3 | ||
######################## | ||
|
||
|
||
####################### | ||
# good # | ||
# person # | ||
####################### | ||
|
||
# en: Default paramter for Good Person. | ||
# fr: Paramètre par défaut de Good Person. | ||
good_person = False | ||
|
||
# en: Good Person badwords. | ||
# fr: Mot interdit pour Good Person. | ||
badwords = ["fuck", "shit", "pute", "connard", "connasse", "conasse", "nigg", "bitch", "kys", "fdp", "ntm", "tg"] | ||
|
||
# en: Good Person "good words". | ||
# fr: Mot "bon" pour Good Person. | ||
good_person_list = [ | ||
"GeForce RTX 4000", | ||
"🍗", | ||
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.", | ||
"AMD Ryzen™ 9 7900", | ||
"Intel Core is very good", | ||
"🐈", | ||
"🍟", | ||
"yipeeeeeeeee", | ||
"😍", | ||
"🌠", | ||
"u r beautiful", | ||
"you are all very intelligent", | ||
"excuse me" | ||
] | ||
######################## | ||
######################## | ||
|
||
####################### | ||
# raid # | ||
# config # | ||
####################### | ||
# en: Ban reason (for &banall). | ||
# fr: Raison du banissement (pour &banall). | ||
ban_reason = "ezzed by Andor lol." | ||
kick_reason = "ezzed by Andor lol." |