Bom pessoal to querendo fazer meu hack so que eu ouvi fala que a as strings estao detectadas então eu quero coloca elas encrypt so que eu nao como colocar no menu to usando a whit base v2
Como faso pra add no menu
No Arquivo Itens.h
Tem la assim AdicionarItem("NX Chams", Opt_on_off, &chams, 2, MENUITEM);
Como faso para bota ela encryptadas
tipo e assim
decrypt("QA FKDPV") e mais ou menos assim ?
to usando essa encrypt
#include "targetver.h"
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <stdio.h>
#include <iostream>
using namespace std;
char* decrypt(const char* plaintext)
{
int len = strlen(plaintext);
char* cyphertext = new char[len+1];
for(int i=0 ; i<len ; ++i)
{
cyphertext[i] = plaintext[i] - 4;
}
cyphertext[len] = 0;
return cyphertext;
}
Min ajuda pf