Flarecheat source

waled

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Nov 15, 2019
Messages
3
Reaction score
1
You cant view this link please login.

A like would be a appreciated enjoy
(also compile in debug)
 

imgunter

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 20, 2020
Messages
14
Reaction score
18
i get this errors :
1>D:\CIORDEALA\valve_sdk\sdk.hpp(102,43): error C7576: declaration of 'args' shadows a template parameter
1>D:\CIORDEALA\valve_sdk\sdk.hpp(101): message : see declaration of 'args'
the command line is:



template < typename... args >
void con_msg ( const char* pMsg, args ... args )
{
static auto import = reinterpret_cast< void ( *) ( const char*, ... ) > ( GetProcAddress ( GetModuleHandleW ( L"tier0.dll" ), "?ConMsg@@YAXPBDZZ" ) );
return import ( pMsg, args... );
}

template < typename... Args >
void con_color_msg ( const Color& clr, const char* pMsg, Args ... args )
{
static auto import = reinterpret_cast< void ( *) ( const Color&, const char*, ... ) > ( GetProcAddress (
GetModuleHandleW ( L"tier0.dll" ), "?ConColorMsg@@YAXABVColor@@PBDZZ" )
);
return import ( clr, pMsg, args... );
}
 
Top