This commit is contained in:
momo5502 2016-01-31 13:19:29 +01:00
parent 9d9229b229
commit e51e791184
4 changed files with 17 additions and 1 deletions

View File

@ -204,7 +204,7 @@ workspace "iw4x"
-- libtomcrypt
project "libtomcrypt"
language "C"
defines { "_LIB", "LTC_SOURCE" }
defines { "_LIB", "LTC_SOURCE", "LTC_NO_RSA_BLINDING" }
includedirs { "./deps/libtomcrypt/src/headers" }
files

View File

@ -193,6 +193,12 @@ namespace Components
static float volume = 1.0f;
Utils::Hook::Set<float*>(0x408078, &volume);
// Uncheat ui_showList
Utils::Hook::Xor<BYTE>(0x6310DC, Game::dvar_flag::DVAR_FLAG_CHEAT);
// Uncheat ui_debugMode
Utils::Hook::Xor<BYTE>(0x6312DE, Game::dvar_flag::DVAR_FLAG_CHEAT);
// Hook dvar 'name' registration
Utils::Hook(0x40531C, Dvar::RegisterName, HOOK_CALL).Install()->Quick();
}

View File

@ -239,6 +239,8 @@ namespace Components
//#ifdef USE_NODE_STUFF
Assert_Size(Node::AddressEntry, 6);
//ltc_mp = tfm_desc;
Dvar::OnInit([] ()
{
Node::Dedis.clear();

View File

@ -45,11 +45,19 @@
#pragma warning(disable: 6387)
#define ZLIB_CONST
//#define TFM_DESC
#define LTC_NO_FAST
#define LTC_NO_PROTOTYPES
#define LTC_NO_RSA_BLINDING
#define ASIO_STANDALONE
#include <zlib.h>
#include <curses.h>
//#include <asio.hpp>
#include <json11.hpp>
#include <tomcrypt.h>
#pragma warning(pop)