Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
infectedxd authored Apr 12, 2024
1 parent fc6bfe8 commit eabe4ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions xfected.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import platform
import colorama
from colorama import Fore, Style
import subprocess

colorama.init()

Expand All @@ -56,7 +57,7 @@ def save_autoresponder_data(data):
AUTHORIZED_USERS = [infection]
prefix = config('prefix', default='')
bot = commands.Bot(command_prefix=prefix, self_bot=True, help_command=None)
xfected_version = "v2.1.0"
xfected_version = "v2.1.1"
fake = Faker()

def is_authorized(ctx):
Expand Down Expand Up @@ -497,7 +498,7 @@ async def scrap(ctx, limit: int = 10000):

@bot.event
async def on_ready():
os.system('cls' if os.name == 'nt' else 'clear')
subprocess.call('cls' if os.name == 'nt' else 'clear', shell=True)
ctypes.windll.kernel32.SetConsoleTitleW("Xfected Selfbot")
colorama.init()

Expand Down

0 comments on commit eabe4ba

Please sign in to comment.