├── Auto-Accept-CS2.exe
├── README.md
├── image.png
└── index.py
/Auto-Accept-CS2.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Walkoud/CS2-Auto-Accept/b645aa93ae9911bc36a9d4a7e036abed4329e56c/Auto-Accept-CS2.exe
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 | # CS2-Auto-Accept - Working 24/01/2025
3 |
4 | Automatically accept your matches on counter strike 2
5 |
6 | 
7 |
8 |
9 | ## Usage
10 | **You need Python installed in you Windows**
11 | - You can download easely : https://www.python.org/downloads/
12 |
13 | **Download the program :**
14 | - https://github.com/Walkoud/CS2-Auto-Accept/releases/tag/download
15 |
16 | **Open the program, and set the game window CS2 to the front of your screen**
17 |
18 | **Now you can go to the WC to poop**
19 |
20 |
21 |
22 |
23 |
24 | ## Informations
25 |
26 | **VAC BAN ?**
27 | - You can't be VAC ban, this program only allows you to accept a match automatically. The program makes no changes to Counter Strike 2.
28 |
29 |
30 | **Does this work in stretched 4:3 ?**
31 | - Yes it work with all resolution
32 |
33 |
34 | **My discord tag:**
35 | - walkoud
36 |
37 | ## Test on this image
38 |
39 | 
40 |
41 |
42 | 
43 |
44 |
--------------------------------------------------------------------------------
/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Walkoud/CS2-Auto-Accept/b645aa93ae9911bc36a9d4a7e036abed4329e56c/image.png
--------------------------------------------------------------------------------
/index.py:
--------------------------------------------------------------------------------
1 |
2 | import pyautogui
3 | import time
4 | from colorama import Fore, Style
5 | import sys
6 | import os
7 | # Made by <3 by Walkoud
8 |
9 | print(Fore.RED + Style.BRIGHT + """
10 | ___ __ ____________ ___ _________________ ______
11 | / _ |/ / / /_ __/ __ \ / _ |/ ___/ ___/ __/ _ \/_ __/
12 | / __ / /_/ / / / / /_/ / / __ / /__/ /__/ _// ___/ / /
13 | /_/ |_\____/ /_/ \____/ /_/ |_\___/\___/___/_/ /_/
14 | """+ Fore.BLUE + """
15 | By Walkoud v1 """ + Fore.YELLOW + """
16 | ____________
17 | / ___/ __/_ |
18 | / /___\ \/ __/
19 | \___/___/____/
20 |
21 | """+ Fore.WHITE + """
22 |
23 | https://github.com/walkoud
24 |
25 | """)
26 |
27 |
28 | print(Fore.GREEN + "Starting in 3 seconds !" + Style.RESET_ALL)
29 |
30 |
31 |
32 |
33 |
34 | def resource_path(relative_path):
35 | """ Get absolute path to resource, works for dev and for PyInstaller """
36 | try:
37 | # PyInstaller creates a temp folder and stores path in _MEIPASS
38 | base_path = sys._MEIPASS
39 | except Exception:
40 | base_path = os.path.abspath(".")
41 |
42 | return os.path.join(base_path, relative_path)
43 |
44 | # Utilisation de la fonction resource_path pour obtenir le chemin absolu de "image.png"
45 | image_path = resource_path("image.png")
46 |
47 | def detect_and_click(image_path):
48 | time.sleep(3)
49 | while True:
50 | try:
51 | x, y = pyautogui.locateCenterOnScreen(image_path)
52 | pyautogui.click(x, y)
53 | print(Fore.GREEN + "CLICKED IN AUTOACCEPT Successfully" + Style.RESET_ALL)
54 | print(Fore.GREEN + "ReStarting in 3 seconds !" + Style.RESET_ALL)
55 | time.sleep(3)
56 | except TypeError:
57 | print("Searching accept button... Retrying in 1 seconds...")
58 | time.sleep(1)
59 |
60 |
61 |
62 |
63 | detect_and_click(image_path)
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 | # Made by <3 by Walkoud
92 |
--------------------------------------------------------------------------------