Исходник Click gui Python

Начинающий
Статус
Оффлайн
Регистрация
5 Янв 2023
Сообщения
46
Реакции[?]
1
Поинты[?]
1K
Пожалуйста, авторизуйтесь для просмотра ссылки.

Хз, на питони читы к майну по сути сделать можно, но очеееень сложно. Ну вроде норм получилось, ровненько, с настройками.
Можно использовать для всяких экслюзивных видео
Пожалуйста, авторизуйтесь для просмотра ссылки.

ClickGui.py:
import tkinter as tk
from tkinter import font, StringVar, IntVar, ttk

def show_custom_message(title, message):
    custom_message_window = tk.Toplevel()
    custom_message_window.title(title)
    custom_message_window.geometry("300x100")
    custom_message_window.configure(bg="#34495E")

    custom_font_title = font.Font(family="Helvetica", size=12, weight='bold')
    custom_font_message = font.Font(family="Helvetica", size=10, slant='italic')
    custom_font_button = font.Font(family="Helvetica", size=10)

    title_label = tk.Label(custom_message_window, text=title, font=custom_font_title, bg="#34495E", fg="white")
    title_label.pack(pady=10)

    message_label = tk.Label(custom_message_window, text=message, font=custom_font_message, bg="#34495E", fg="white")
    message_label.pack(pady=5)

    ok_button = tk.Button(custom_message_window, text="OK", command=custom_message_window.destroy, bg="#2980B9", fg="white", font=custom_font_button, borderwidth=2, relief="raised")
    ok_button.pack(pady=5)

def open_killAura_settings():
    settings_window = tk.Toplevel()
    settings_window.title("Настройки KillAura")
    settings_window.geometry("400x420")
    settings_window.configure(bg="#34495E")

    mode_var = StringVar(value="matrix")
    radius_var = IntVar(value=3)
    killAura_active = IntVar(value=0)

    mode_label = tk.Label(settings_window, text="Выберите режим:", bg="#34495E", fg="white")
    mode_label.pack(pady=10)

    mode_combo = ttk.Combobox(settings_window, textvariable=mode_var, values=["matrix", "grim", "funtime"])
    mode_combo.pack(pady=5)

    radius_label = tk.Label(settings_window, text="Выберите радиус атаки:", bg="#34495E", fg="white")
    radius_label.pack(pady=10)

    radius_scale = tk.Scale(settings_window, from_=3, to=6, variable=radius_var, orient=tk.HORIZONTAL)
    radius_scale.pack(pady=5)

    target_label = tk.Label(settings_window, text="Выберите цели:", bg="#34495E", fg="white")
    target_label.pack(pady=10)

    target_listbox = tk.Listbox(settings_window, selectmode=tk.MULTIPLE)
    targets = ["игроки", "инвизки", "мобы", "голые"]
    for target in targets:
        target_listbox.insert(tk.END, target)
    target_listbox.pack(pady=5)

    toggle_killAura_button = tk.Button(settings_window, text="Включить KillAura" if killAura_active.get() == 0 else "Выключить KillAura", command=lambda: toggle_killAura(killAura_active, toggle_killAura_button), bg="#2980B9", fg="white")
    toggle_killAura_button.pack(pady=10)

    confirm_button = tk.Button(settings_window, text="Подтвердить", command=lambda: apply_killAura_settings(mode_var.get(), radius_var.get(), target_listbox.curselection()), bg="#2980B9", fg="white")
    confirm_button.pack(pady=20)

def toggle_killAura(active_var, button):
    if active_var.get() == 0:
        active_var.set(1)
        button.config(text="Выключить KillAura")
    else:
        active_var.set(0)
        button.config(text="Включить KillAura")

def apply_killAura_settings(mode, radius, target_indexes):
    targets = []
    for index in target_indexes:
        targets.append(target_listbox.get(index))
    targets_str = ", ".join(targets)
    message = f"KillAura активирован с режимом: {mode}, радиусом: {radius}, целями: {targets_str}."
    show_custom_message("KillAura", message)

def open_fly_settings():
    settings_window = tk.Toplevel()
    settings_window.title("Настройки Fly")
    settings_window.geometry("400x300")
    settings_window.configure(bg="#34495E")

    mode_var = StringVar(value="Vanila Glide")
    speed_var = IntVar(value=20)

    mode_label = tk.Label(settings_window, text="Выберите режим:", bg="#34495E", fg="white")
    mode_label.pack(pady=10)

    mode_combo = ttk.Combobox(settings_window, textvariable=mode_var, values=["Vanila" "Glide", "FTOld", "RWELYTRA"])
    mode_combo.pack(pady=5)

    speed_label = tk.Label(settings_window, text="Выберите скорость (20-100):", bg="#34495E", fg="white")
    speed_label.pack(pady=10)

    speed_scale = tk.Scale(settings_window, from_=20, to=100, variable=speed_var, orient=tk.HORIZONTAL)
    speed_scale.pack(pady=5)

    confirm_button = tk.Button(settings_window, text="Подтвердить", command=lambda: apply_fly_settings(mode_var.get(), speed_var.get()), bg="#2980B9", fg="white")
    confirm_button.pack(pady=20)

def apply_fly_settings(mode, speed):
    message = f"Fly активирован с режимом: {mode}, скорость: {speed}."
    show_custom_message("Fly", message)

def open_autoTotem_settings():
    settings_window = tk.Toplevel()
    settings_window.title("Настройки AutoTotem")
    settings_window.geometry("400x300")
    settings_window.configure(bg="#34495E")

    mode_var = StringVar(value="funtime")
    hp_var = IntVar(value=20)
    check_var = StringVar(value="кристалл")

    mode_label = tk.Label(settings_window, text="Выберите режим:", bg="#34495E", fg="white")
    mode_label.pack(pady=10)

    mode_combo = ttk.Combobox(settings_window, textvariable=mode_var, values=["funtime", "hollyworld", "reallyworld"])
    mode_combo.pack(pady=5)

    hp_label = tk.Label(settings_window, text="Выберите HP (1-20):", bg="#34495E", fg="white")
    hp_label.pack(pady=10)

    hp_scale = tk.Scale(settings_window, from_=1, to=20, variable=hp_var, orient=tk.HORIZONTAL)
    hp_scale.pack(pady=5)

    check_label = tk.Label(settings_window, text="Выберите проверку:", bg="#34495E", fg="white")
    check_label.pack(pady=10)

    check_combo = ttk.Combobox(settings_window, textvariable=check_var, values=["кристалл", "вагонетка с ТНТ", "ТНТ падаешь"])
    check_combo.pack(pady=5)

    confirm_button = tk.Button(settings_window, text="Подтвердить", command=lambda: apply_autoTotem_settings(mode_var.get(), hp_var.get(), check_var.get()), bg="#2980B9", fg="white")
    confirm_button.pack(pady=20)

def apply_autoTotem_settings(mode, hp, check):
    message = f"AutoTotem активирован с режимом: {mode}, HP: {hp}, проверка: {check}."
    show_custom_message("AutoTotem", message)

def killAura():
    open_killAura_settings()

def autoTotem():
    open_autoTotem_settings()

def hitbox():
    show_custom_message("Hitbox", "Hitbox включен.")

def triggerBot():
    show_custom_message("TriggerBot", "TriggerBot включен.")

def noFriendDamage():
    show_custom_message("NoFriendDamage", "NoFriendDamage включен.")

def fly():
    open_fly_settings()

def dragonFly():
    show_custom_message("DragonFly", "Включен.")

def open_speed_settings():
    settings_window = tk.Toplevel()
    settings_window.title("Настройки Speed")
    settings_window.geometry("400x300")
    settings_window.configure(bg="#34495E")

    mode_var = StringVar(value="EntityBoost")
    
    mode_label = tk.Label(settings_window, text="Выберите режим:", bg="#34495E", fg="white")
    mode_label.pack(pady=10)

    mode_combo = ttk.Combobox(settings_window, textvariable=mode_var, values=["EntityBoost", "FT", "FuntimeOld", "Matrix", "Grim", "Vulcan"])
    mode_combo.pack(pady=5)

    confirm_button = tk.Button(settings_window, text="Подтвердить", command=lambda: apply_speed_settings(mode_var.get()), bg="#2980B9", fg="white")
    confirm_button.pack(pady=20)

def apply_speed_settings(mode):
    message = f"Speed активирован с режимом: {mode}."
    show_custom_message("Speed", message)

def speed():
    open_speed_settings()

def spider():
    show_custom_message("Spider", "Spider включен.")

def longJump():
    show_custom_message("LongJump", "LongJump включен.")

def autoArmor():
    show_custom_message("AutoArmor", "Содержимое функции AutoArmor.")

def mystStealer():
    show_custom_message("MystStealer", "Содержимое функции MystStealer.")

def blockEsp():
    show_custom_message("BlockEsp", "BlockEsp включен.")

def create_buttons(root):
    left_frame = tk.Frame(root, bg="#2C3E50")
    left_frame.pack(side=tk.LEFT, fill=tk.Y, padx=10, pady=10)

    right_frame = tk.Frame(root, bg="#2C3E50")
    right_frame.pack(side=tk.LEFT, fill=tk.Y, padx=10, pady=10)

    functions_left = [
        ("KillAura", killAura),
        ("AutoTotem", autoTotem),
        ("Hitbox", hitbox),
        ("TriggerBot", triggerBot),
        ("NoFriendDamage", noFriendDamage),
        ("Fly", fly),
    ]

    functions_right = [
        ("DragonFly", dragonFly),
        ("Speed", speed),
        ("Spider", spider),
        ("LongJump", longJump),
        ("AutoArmor", autoArmor),
        ("MystStealer", mystStealer),
        ("BlockEsp", blockEsp),
    ]

    for name, command in functions_left:
        button = tk.Button(
            left_frame,
            text=name,
            command=command,
            width=20,
            bg="#2980B9",
            fg="white",
            font=font.Font(family="Helvetica", size=12, weight='bold'),
            borderwidth=2,
            relief="raised"
        )
        button.pack(pady=10)

    for name, command in functions_right:
        button = tk.Button(
            right_frame,
            text=name,
            command=command,
            width=20,
            bg="#2980B9",
            fg="white",
            font=font.Font(family="Helvetica", size=12, weight='bold'),
            borderwidth=2,
            relief="raised"
        )
        button.pack(pady=10)

if [B]name[/B] == "[B]main[/B]":
    root = tk.Tk()
    root.title("BichClient")
    root.geometry("500x570")
    root.configure(bg="#2C3E50")

    title_font = font.Font(family="Helvetica", size=20, weight='bold')
    title_label = tk.Label(root, text="BichClient", font=title_font, bg="#2C3E50", fg="white")
    title_label.pack(pady=10)

    create_buttons(root)
    root.mainloop()
 
Забаненный
Статус
Оффлайн
Регистрация
10 Май 2023
Сообщения
829
Реакции[?]
9
Поинты[?]
3K
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
пздц
 
Начинающий
Статус
Оффлайн
Регистрация
31 Авг 2023
Сообщения
699
Реакции[?]
6
Поинты[?]
5K
это такоееее дерьмо от чат гпт что аш плакать хочется
 
Начинающий
Статус
Оффлайн
Регистрация
24 Окт 2023
Сообщения
13
Реакции[?]
0
Поинты[?]
0
Пиздец, клик гуи на питоне писать, человечество идет к распаду
 
Начинающий
Статус
Оффлайн
Регистрация
5 Янв 2023
Сообщения
46
Реакции[?]
1
Поинты[?]
1K
Начинающий
Статус
Оффлайн
Регистрация
7 Июл 2022
Сообщения
74
Реакции[?]
7
Поинты[?]
3K
Сверху Снизу