1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include "KeyValues.h"
#include "pattern.hpp"
#include "interfaces.h"
void* KeyValues::key_values_ptr;
void IKeyValuesSystem::FreeKeyValuesMemory( void* memory ) {
return util::get_vfunc< 2, void >( this, memory );
}
int IKeyValuesSystem::GetSymbolForString( const char* str, bool create ) {
static auto offset = pattern::first_code_match( GetModuleHandleA( xors( "client.dll" ) ), xors( "FF 15 ? ? ? ? 83 C4 08 89 06 8B C6" ) );
using fn = int( __thiscall* )( void*, const char*, bool );
int symbol = ( ( fn )( offset ) )( this, str, create );
return symbol;
}
const char* IKeyValuesSystem::GetStringForSymbol( int symbol ) {
static auto offset = pattern::first_code_match( GetModuleHandleA( xors( "client.dll" ) ), xors( "55 8B EC 8B 55 08 83 FA FF" ) );
using fn = const char*( __thiscall* )( void*, int );
auto result = ( ( fn )( offset ) )( this, symbol );
printf( "%d: %d\n", symbol, *( int* )( &result ) );
return result;
}
//honestly keyvalues can suck my fucking cock while i force feeds that fucking whores ass rats to live in its cum infested shithole
KeyValues::KeyValues( const char* name ) {
static std::string fun_pattern = "E8 ? ? ? ? 80 7D 84 00";
static uintptr_t function_offset = pattern::first_code_match( cl.m_chl.dll( ), fun_pattern ) + 0x13C;
static auto function = reinterpret_cast< void( __thiscall* )( void*, const char* ) >( function_offset );
if( function ) function( this, name );
}
bool KeyValues::LoadFromBuffer( const char* resource_name, const char* buffer, void* file_system, const char* path_id ) {
static std::string fun_pattern = "55 8B EC 83 E4 F8 83 EC 34 53 8B 5D 0C 89 4C 24 04";
static auto function = pattern::first_code_match< bool( __thiscall* )( void*, const char*, const char*, void*, const char*, void* ) >( cl.m_chl.dll( ), fun_pattern );
if( function ) return function( this, resource_name, buffer, file_system, path_id, 0 );
return false;
}
void* KeyValues::operator new( size_t alloc_size ) {
if( !KeyValues::key_values_ptr ) {
static auto get_key_values = reinterpret_cast< void*( __cdecl* )( ) >( GetProcAddress( GetModuleHandleA( "vstdlib.dll" ), "KeyValuesSystem" ) );
KeyValues::key_values_ptr = get_key_values( );
}
return call_vfunc< void*( __thiscall* )( void*, size_t ) >( KeyValues::key_values_ptr, 1 )( KeyValues::key_values_ptr, 32 );
}
void KeyValues::operator delete( void* mem ) {
if( !KeyValues::key_values_ptr ) {
static auto get_key_values = reinterpret_cast< void*( __cdecl* )( ) >( GetProcAddress( GetModuleHandleA( "vstdlib.dll" ), "KeyValuesSystem" ) );
KeyValues::key_values_ptr = get_key_values( );
}
call_vfunc< void( __thiscall* )( void*, void* ) >( KeyValues::key_values_ptr, 2 )( KeyValues::key_values_ptr, mem );
}
|