This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace sdk | |
{ | |
namespace detail | |
{ | |
static __int64 __fastcall sub_17F7660(unsigned __int64 a1, unsigned __int64 a2, int a3) | |
{ | |
unsigned __int64 v3; // r8 | |
__int64 result; // rax | |
unsigned __int64 v5; // r9 | |
unsigned __int64 v6; // r9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <stdint.h> | |
#include <stdio.h> | |
namespace be | |
{ | |
void print_message( const char* msg ) | |
{ | |
printf( "[BATTLEYE] %s\n", msg ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#include <string.h> | |
// yousif, namazso, can1357, defcon42 | |
namespace packet | |
{ | |
constexpr size_t be_xor_key = 0xd774f59d; |