Salut à toi visiteur !
Inscris toi en moins de 10 secondes pour profitez pleinement du site et partager avec la communauté ! S'inscrire


Bienvenue, Visiteur
Vous devez vous enregistrer avant de pouvoir poster.

Nom d’utilisateur
  

Mot de passe
  





Rechercher dans les forums

(Recherche avancée)

Statistiques du Forum
» Membres : 71,276
» Dernier membre : suhanidash557
» Sujets du forum : 5,610
» Messages du forum : 42,090

Statistiques complètes

Utilisateurs en ligne
Il y a actuellement 156 utilisateurs connectés.
» 0 Membre(s) | 148 Visiteur(s)
UptimeRobot, Ahrefs, Semrush, Bing, Applebot, Google, AliCloud Bot, Yandex

Derniers sujets
⭐Onlyfans Loaded Accounts...
Forum : Vente & Achat
Dernier message : IZI4Shop
04-04-2026, 01:58
» Réponses : 22
» Affichages : 5,872
The Rise of AI-Powered So...
Forum : Propositions / Idées
Dernier message : LKD_Blood
08-03-2026, 10:09
» Réponses : 33
» Affichages : 3,095
eVoL - Rage, Legit, Speed...
Forum : Counter Strike 1.6
Dernier message : davidtripoli
05-03-2026, 23:13
» Réponses : 7
» Affichages : 4,516
Compte steam 11 ans avec ...
Forum : Vente & Achat
Dernier message : tktrading
02-03-2026, 06:37
» Réponses : 0
» Affichages : 121
Wallet no kyc 2026
Forum : Crypto-monnaie
Dernier message : hellotheworld
02-03-2026, 00:27
» Réponses : 0
» Affichages : 115
Présentation de Jokkker18...
Forum : Présentations
Dernier message : albine7
23-02-2026, 02:42
» Réponses : 3
» Affichages : 558
Présentation de albine7
Forum : Présentations
Dernier message : albine7
23-02-2026, 02:41
» Réponses : 0
» Affichages : 148
The Rise of AI-Powered So...
Forum : Propositions / Idées
Dernier message : XenoConnor
21-02-2026, 03:04
» Réponses : 36
» Affichages : 3,359
From $50 to $5,700: The B...
Forum : Propositions / Idées
Dernier message : myr3dss
21-02-2026, 02:09
» Réponses : 34
» Affichages : 2,403
From Broke to $2,800 Mont...
Forum : Propositions / Idées
Dernier message : nolan13
21-02-2026, 00:50
» Réponses : 34
» Affichages : 2,390

 
  besoin d'aide
Posté par : CapGaming - 05-09-2022, 21:26 - Forum : Questions, aide et recherche. - Réponses (1)

Je pocede une triche TRigger pour Valorant je souhaiterais implanter un SIlent une personne peux m'aider ?

Imprimer cet élément

Heart Trigger Valorant
Posté par : CapGaming - 05-09-2022, 21:25 - Forum : Valorant - Réponses (14)

Bonjour, je vais vous partager une source Trigger que j'ai modiffié afin qu'elle soit le mieux jouable actuellement je suis monté Platine 3 grasse a cella :
1 Préréqui VS studio 
2 Veuillez compiller le fichier Netflix .sln en jeux 

Code :
#pragma once

#include "pch.h"
#include <Windows.h>
#include <stdio.h>
#include <iostream>
#include <thread>
#include <chrono>
#include <Windows.h>
#include "HSV.h"
#include "Screen.h"

#ifdef _WIN32
#include <io.h>
#define access _access_s
#else
#include <unistd.h>
#endif

#define INAME L"VALORANT "
using namespace std;

int colorMode = 1;
HWND deeznuts;
#define isDown 0x8000

int get_screen_width(void) {
return GetSystemMetrics(SM_CXSCREEN);
}

int get_screen_height(void) {
return GetSystemMetrics(SM_CYSCREEN);
}

struct point {
double x;
double y;
point(double x, double y) : x(x), y(y) {}
};

inline bool is_color(int red, int green, int blue) {
if (colorMode == 0) { // purple
if ((red >= 190 && green >= 100 && blue >= 200) ||
(red >= 80 && red <= 100 && green >= 20 && green <= 30 && blue >= 100 && blue <= 110) ||
(red >= 100 && red <= 190 && green >= 30 && green <= 90 && blue >= 110 && blue <= 200))
return true;
}
else if (colorMode == 1) { // yellow
if ((red >= 170 && red <= 200 && green >= 165 && green <= 215 && blue >= 25 && blue <= 110) ||
(red >= 145 && red <= 170 && green >= 140 && green <= 165 && blue >= 5 && blue <= 55) ||
(red >= 200 && red <= 230 && green >= 200 && green <= 230 && blue >= 0 && blue <= 90) ||
(red >= 230 && green >= 230 && blue >= 90 && blue <= 190))
return true;
}
////original color purple
//if (colorMode == 0) {
// if (green >= 190) {
// return false;
// }

// if (green >= 140) {
// return abs(red - blue) <= 8 &&
// red - green >= 50 &&
// blue - green >= 50 &&
// red >= 105 &&
// blue >= 105;
// }

// return abs(red - blue) <= 13 &&
// red - green >= 60 &&
// blue - green >= 60 &&
// red >= 110 &&
// blue >= 100;
//}

//// yellow
//else {
// if (red < 160)
// {
// return false;
// }
// if (red > 161 && red < 255) {
// return green > 150 && green < 255 && blue > 0 && blue < 79;
// }
// return false;
//}
return false;
}

BYTE* screenData = 0;
bool run_threads = true;
const int screen_width = get_screen_width(), screen_height = get_screen_height();

//bot with purple (original (again not default))
void bot() {
int w = 8, h = 8;
auto t_start = std::chrono::high_resolution_clock::now();
auto t_end = std::chrono::high_resolution_clock::now();

HDC hScreen = GetDC(NULL);
HBITMAP hBitmap = CreateCompatibleBitmap(hScreen, w, h);
screenData = (BYTE*)malloc(5 * screen_width * screen_height);
HDC hDC = CreateCompatibleDC(hScreen);
point middle_screen(screen_width / 2, screen_height / 2);

BITMAPINFOHEADER bmi = { 0 };
bmi.biSize = sizeof(BITMAPINFOHEADER);
bmi.biPlanes = 1;
bmi.biBitCount = 32;
bmi.biWidth = w;
bmi.biHeight = -h;
bmi.biCompression = BI_RGB;
bmi.biSizeImage = 0;


//Screen::getSize();

//int x = Screen::width / 2; //DONT NEED TO BE CALLED EVERY TICK, THE DESKTOP MONITOR SIZE DOESNT CHANGE!
//int y = Screen::height / 2; //DONT NEED TO BE CALLED EVERY TICK, THE DESKTOP MONITOR SIZE DOESNT CHANGE!

//RGBTRIPLE rgbTriple;
//HDC desktopHdc = GetDC(NULL);

//int addX = 0, addY = 0;

//while (1) {
// int TRIGGER_SIZE = 8;

// if ((GetAsyncKeyState(VK_XBUTTON1) && isDown) && !(GetAsyncKeyState(VK_LBUTTON) && isDown)) { //IS PRESSING TRIGGER KEY AND ISNT PRESSING THE MOUSE 1
// for (int iX = 0; iX < TRIGGER_SIZE; iX++) {
// for (int iY = 0; iY < TRIGGER_SIZE; iY++) {
// if (iX >= TRIGGER_SIZE / 2) addX = ((TRIGGER_SIZE / 2) - iX); //MAKES A x RECT AROUND THE MIDDLE SCREEN
// if (iX < TRIGGER_SIZE / 2) addX = ((TRIGGER_SIZE / 2) - iX); //MAKES A x RECT AROUND THE MIDDLE SCREEN

// if (iY >= TRIGGER_SIZE / 2) addY = (iY - (TRIGGER_SIZE / 2)); //MAKES A y RECT AROUND THE MIDDLE SCREEN
// if (iY < TRIGGER_SIZE / 2) addY = (iY - (TRIGGER_SIZE / 2)); //MAKES A y RECT AROUND THE MIDDLE SCREEN

// CRREF color = GetPixel(desktopHdc, x + addX, y + addY);

// rgbTriple.rgbtRed = GetRValue(color);
// rgbTriple.rgbtGreen = GetGValue(color);
// rgbTriple.rgbtBlue = GetBValue(color);

// Color::HSV rgbToHue = toHSV((float)rgbTriple.rgbtRed, (float)rgbTriple.rgbtGreen, (float)rgbTriple.rgbtBlue);
// Color::ColorName name = Categorize(rgbToHue);
// string cname = Color::toString(name);
// if (cname == "magenta") {
// if (rgbToHue.s * 100 <= 80 && rgbToHue.s * 100 > 15) {
// if ((GetAsyncKeyState(VK_XBUTTON1) && isDown) && !(GetAsyncKeyState(VK_LBUTTON) && isDown)) { //IS PRESSING TRIGGER KEY AND ISNT PRESSING THE MOUSE 1
// Sleep(1);
// PostMessage(deeznuts, WM_LBUTTONDOWN, 1, 0);
// Sleep(1);
// PostMessage(deeznuts, WM_LBUTTONUP, 1, 0);
// }
// else {
// Sleep(1);
// }
// }
// }
// }
// }
// }
//}

while (run_threads) {
Sleep(0001);
HGDIOBJ old_obj = SelectObject(hDC, hBitmap);
BOOL bRet = BitBlt(hDC, 0, 0, w, h, hScreen, middle_screen.x - (w/2), middle_screen.y - (h/2), SRCCOPY);
SelectObject(hDC, old_obj);
GetDIBits(hDC, hBitmap, 0, h, screenData, (BITMAPINFO*)&bmi, DIB_RGB_CRS);
for (int j = 0; j < h; ++j) {
for (int i = 0; i < w * 4; i += 4) {
#define red screenData[i + (j*w*4) + 2]
#define green screenData[i + (j*w*4) + 1]
#define blue screenData[i + (j*w*4) + 0]
if ((GetAsyncKeyState(VK_XBUTTON1) && isDown) && !(GetAsyncKeyState(VK_LBUTTON) && isDown)) { //IS PRESSING TRIGGER KEY AND ISNT PRESSING THE MOUSE 1
if (is_color(red, green, blue)) {
PostMessage(deeznuts, WM_LBUTTONDOWN, 1, 0);
Sleep(001);
PostMessage(deeznuts, WM_LBUTTONUP, 1, 0);
Sleep(001);

}
}
else {
Sleep(001);
}
}
}

}
}

int APIENTRY WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
deeznuts = FindWindowW(NULL, INAME);
HDC nDC = GetDC(deeznuts);
string color;
int mode = 1;
AllocConsole();
AttachConsole(GetCurrentProcessId());
auto w_f = freopen("CON", "w", stdout);
auto r_f = freopen("CON", "r", stdin);
bot();
}
3 le logiciel est actuellement régler pour tirer la couleur Jaune si vous souhaitez une autre couleur faites me le savoir je vous direz quoi faire 
Bon jeux !

Imprimer cet élément

Star Connais tu ?
Posté par : axelzolf54 - 01-09-2022, 17:05 - Forum : Café - Réponses (3)

Je vous parle d'un temps Que les moins de vingt ans Ne peuvent pas connaître .. lol 

Les plus vieux ? Vous avez connu les "ScreamSteam" "SteamDown" etc ? 
Ne cherchez pas sur le web, il n'y existe plus rien à propos ca ^^

Imprimer cet élément

Information Présentation de axelzolf54
Posté par : axelzolf54 - 01-09-2022, 14:10 - Forum : Présentations - Pas de réponse

Pseudo / Age: 33 ans / ZOLF
Connaisance / Experience de counter-strike:
joueur cs depuis 1.5
Loisirs / Hobbies:
Informatique
Présentation IRL :
Agent Incendie
Pourquoi Cs-Hackers ?:
car je me souvient de cs-hacked alors j'ai voulus tester ici =)
Que comptes-tu apporter au forum ?:
de l'aide et de l'expériences
Autre précisions:
j'ai cheat sur CSS pendant 5 ans , 1 an sur csgo, 1 an sur warzone

Imprimer cet élément

Information Présentation de Warex45
Posté par : Warex45 - 23-08-2022, 12:20 - Forum : Présentations - Pas de réponse

Pseudo / Age: Warex / 24
Connaisance / Experience de counter-strike:
Joueur amateur à mes temps perdus
Loisirs / Hobbies:
Jeux videos
Présentation IRL :
Unknown
Pourquoi Cs-Hackers ?:
Car je connaissais à l'époque et jai vu que le forum était toujours actif
Que comptes-tu apporter au forum ?:
Ma connaissance
Autre précisions:
Unknown

Imprimer cet élément

  Plex | VOD | Série | Film
Posté par : MoOnKeY - 09-08-2022, 22:28 - Forum : Vente & Achat - Réponses (31)

Salut !



Plex c'est quoi ?
- C'est une application qui permet de regarder n'importe quel série/film qui est disponible. ( Application disponible sur tout support )
- Film/Série de tout genre: (Netflix, Disney, Prime, Canal, Etc..)
- Dernières sorties de l'année
- Plus de 50To de film/série/anime
[Image: HostMarket_Plex_0602-23%20new2.png]
MP
Telegram: @MoOnKeY13

Imprimer cet élément

  Youtube Premium | 35€/année
Posté par : MoOnKeY - 08-08-2022, 16:24 - Forum : Vente & Achat - Réponses (33)

[Image: HostMarket_YouTube_10-12-23.png]

Imprimer cet élément

  cheat realm royale
Posté par : weedby0710 - 06-08-2022, 12:02 - Forum : Cheats Reviews - Réponses (1)

Salut all, je voulais savoir si quelqu'un connais un cheat fiable sur realm royal , juste un wh de préférence. Merci

Imprimer cet élément

  Cheat csgo faceit ?
Posté par : weedby0710 - 04-08-2022, 17:19 - Forum : Cheats Reviews - Réponses (8)

salut, je cherche un cheat fiable csgo pour faceit. pas detecté bien sur, juste un wh de preference. merci

Imprimer cet élément

  anti cheat
Posté par : black_daratahar - 03-08-2022, 19:24 - Forum : Propositions / Idées - Réponses (2)

faire un cheat qui detecte les autre cheat

Imprimer cet élément