Chat gpt hile

asterXpeek

Diamond Üye
Katılım
17 Eki 2024
Mesajlar
327
Beğeniler
59
Herkese selam geçtiğimiz günlerde chat gpt ye CS 2 için hile kodu yazdırdım belki işine yarıyan olur diye atıyorum(kodlar hakkında hiçbir fikrim yok belki çok kötüdür direk copy pastel atıyorum cheat işinden pek anlamam)
Yazdığı hile kodu:
import time
import keyboard # Install via pip: pip install keyboard
import pyautogui # Install via pip: pip install pyautogui

# Set up cheat properties
aim_key = "alt" # Key to trigger aim assist
trigger_key = "ctrl" # Key to trigger triggerbot
headshot_offset = (0, -10) # Offset for headshot aiming
trigger_delay = 0.1 # Delay for triggerbot in seconds

def aim_assist():
# Moves the crosshair slightly for aiming
while keyboard.is_pressed(aim_key):
current_position = pyautogui.position()
target_position = (current_position[0] + headshot_offset[0],
current_position[1] + headshot_offset[1])
pyautogui.moveTo(target_position)
time.sleep(0.01)

def triggerbot():
# Auto-shoot when the crosshair is on an enemy
while keyboard.is_pressed(trigger_key):
pyautogui.click()
time.sleep(trigger_delay)

if __name__ == "__main__":
print("Cheat script running. Use 'alt' for aim assist and 'ctrl' for triggerbot.")
while True:
if keyboard.is_pressed(aim_key):
aim_assist()
elif keyboard.is_pressed(trigger_key):

triggerbot()


Yazdığı bypass kodu

import ctypes
import os

# Step 1: Disable specific Windows security features
def disable_security():
ctypes.windll.kernel32.SetThreadExecutionState(0x80000000 | 0x00000001)

# Step 2: Inject DLL to redirect VAC's detection process
def inject_dll(process_name, dll_path):
os.system(f'taskkill /IM {process_name} /F')
os.system(f'rundll32 {dll_path},DllEntryPoint')

# Step 3: Patch VAC memory scans
def patch_memory_scan():
process = ctypes.windll.kernel32.OpenProcess(0x1F0FFF, False, os.getpid())
memory = ctypes.windll.kernel32.VirtualAllocEx(process, 0, 0x1000, 0x1000, 0x40)
ctypes.windll.kernel32.WriteProcessMemory(process, memory, b"\x90" * 100, 100, None)

if __name__ == "__main__":
# Example: Bypass steps
disable_security()
inject_dll("cs2.exe", "path_to_custom_bypass.dll")
patch_memory_scan()
print("VAC bypass initialized.")

Konu yanlış yerde olabilir k.b
 
python ile çok stabil olacağını düşünmüyorum
 
Denedim hocam

#include <windows.h>
#include <iostream>
#include <thread>
#include <vector>
#include <math.h>
#include <cstring>

#define TARGET_FPS 60

// Example structures (adjust based on game offsets and memory structure)
struct Player {
float x, y, z; // Player position
bool isAlive;
};

// Basic function to get player data (simplified, actual implementation requires memory reading techniques)
std::vector<Player> GetPlayers() {
std::vector<Player> players;
// In a real cheat, you would read player data from memory here
return players;
}

// Aimbot function
void Aimbot() {
while (true) {
// Get list of players (this would be memory reading in a real cheat)
std::vector<Player> players = GetPlayers();

// Find closest enemy player
Player target = {0, 0, 0};
float closestDist = FLT_MAX;
for (const Player& player : players) {
if (player.isAlive) {
// Calculate distance (simplified)
float dist = sqrt(pow(player.x, 2) + pow(player.y, 2) + pow(player.z, 2));
if (dist < closestDist) {
closestDist = dist;
target = player;
}
}
}

// Aim at target (simplified aiming logic)
if (target.isAlive) {
// Calculate aim (use DirectX or OpenGL API for actual screen aiming)
// Simplified: Direct aim at closest target
std::cout << "Aiming at target: (" << target.x << ", " << target.y << ", " << target.z << ")\n";
}
std::this_thread::sleep_for(std::chrono::milliseconds(1000 / TARGET_FPS));
}
}

// Triggerbot function
void Triggerbot() {
while (true) {
// Get list of players (simplified)
std::vector<Player> players = GetPlayers();

for (const Player& player : players) {
if (player.isAlive) {
// Simple triggerbot logic: shoot when crosshair is on an enemy
if (/* crosshair is on player */) {
// Activate trigger (e.g., simulate a left mouse click)
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
std::cout << "Triggerbot activated, shooting at player.\n";
}
}
}
std::this_thread::sleep_for(std::chrono::milliseconds(1000 / TARGET_FPS));
}
}

// ESP (Extra Sensory Perception) function
void ESP() {
while (true) {
std::vector<Player> players = GetPlayers();

// Display player names/boxes/positions on the screen (simplified)
for (const Player& player : players) {
if (player.isAlive) {
// Display ESP box or name on screen (in real cheats, you would use DirectX/OpenGL to draw)
std::cout << "ESP: Player at (" << player.x << ", " << player.y << ", " << player.z << ")\n";
}
}
std::this_thread::sleep_for(std::chrono::milliseconds(1000 / TARGET_FPS));
}
}

int main() {
std::thread aimbotThread(Aimbot);
std::thread triggerbotThread(Triggerbot);
std::thread espThread(ESP);

// Keep the program running
aimbotThread.join();
triggerbotThread.join();
espThread.join();

return 0;
}
Böyle birşey yazdı belki birinin işine yarar
 
chatgpt daha normal içi boş bir kullanıcı adı şifre penceresini yazarken zortluyor oyuna mı kod yazacak knk
 
Herkese selam geçtiğimiz günlerde chat gpt ye CS 2 için hile kodu yazdırdım belki işine yarıyan olur diye atıyorum(kodlar hakkında hiçbir fikrim yok belki çok kötüdür direk copy pastel atıyorum cheat işinden pek anlamam)
Yazdığı hile kodu:
import time
import keyboard # Install via pip: pip install keyboard
import pyautogui # Install via pip: pip install pyautogui

# Set up cheat properties
aim_key = "alt" # Key to trigger aim assist
trigger_key = "ctrl" # Key to trigger triggerbot
headshot_offset = (0, -10) # Offset for headshot aiming
trigger_delay = 0.1 # Delay for triggerbot in seconds

def aim_assist():
# Moves the crosshair slightly for aiming
while keyboard.is_pressed(aim_key):
current_position = pyautogui.position()
target_position = (current_position[0] + headshot_offset[0],
current_position[1] + headshot_offset[1])
pyautogui.moveTo(target_position)
time.sleep(0.01)

def triggerbot():
# Auto-shoot when the crosshair is on an enemy
while keyboard.is_pressed(trigger_key):
pyautogui.click()
time.sleep(trigger_delay)

if __name__ == "__main__":
print("Cheat script running. Use 'alt' for aim assist and 'ctrl' for triggerbot.")
while True:
if keyboard.is_pressed(aim_key):
aim_assist()
elif keyboard.is_pressed(trigger_key):

triggerbot()


Yazdığı bypass kodu

import ctypes
import os

# Step 1: Disable specific Windows security features
def disable_security():
ctypes.windll.kernel32.SetThreadExecutionState(0x80000000 | 0x00000001)

# Step 2: Inject DLL to redirect VAC's detection process
def inject_dll(process_name, dll_path):
os.system(f'taskkill /IM {process_name} /F')
os.system(f'rundll32 {dll_path},DllEntryPoint')

# Step 3: Patch VAC memory scans
def patch_memory_scan():
process = ctypes.windll.kernel32.OpenProcess(0x1F0FFF, False, os.getpid())
memory = ctypes.windll.kernel32.VirtualAllocEx(process, 0, 0x1000, 0x1000, 0x40)
ctypes.windll.kernel32.WriteProcessMemory(process, memory, b"\x90" * 100, 100, None)

if __name__ == "__main__":
# Example: Bypass steps
disable_security()
inject_dll("cs2.exe", "path_to_custom_bypass.dll")
patch_memory_scan()
print("VAC bypass initialized.")

Konu yanlış yerde olabilir k.b
knk yapay zekaya hile yazdırılmaz yazdırsan bile calısmaz
 
chatgpt daha normal içi boş bir kullanıcı adı şifre penceresini yazarken zortluyor oyuna mı kod yazacak knk
Gpt isterse güncel devlerden çok daha iyi bypasslar ve hileler yapabilir fakat malesef böyle birşeye asla izin verilmeyecek veya yapılamayacak. Şuanda sadece basit kandırmalar ile python ile colorbot tarzı şeyler yapabiliyor. Onlarında tamamı sorunlu oluyor (bilerek). Bu kodda işe yaramaz bir kod.
 

  Şuanda konuyu görüntüleyen kullanıcılar


Üst Alt