another TODO
This commit is contained in:
parent
3213d4d877
commit
6e0918b3af
3
TODO
3
TODO
@ -75,8 +75,7 @@ FLAG ESP? // //
|
||||
// //
|
||||
ESP Icons // //
|
||||
ESP Distance sort // //
|
||||
Show sapped buildings in ESP // //
|
||||
halloween medkits // //
|
||||
Show sapped buildings in ESP // // // //
|
||||
carrying esp // //
|
||||
Tracers/Spy Cam // //
|
||||
// //
|
||||
|
@ -214,7 +214,6 @@ void CreateMove()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// AntiAfk That after a certian time without movement keys depressed, causes
|
||||
// random keys to be spammed for 1 second
|
||||
if (anti_afk)
|
||||
|
@ -1011,6 +1011,7 @@ CatEnum skys({ "sky_tf2_04",
|
||||
static CatVar
|
||||
skybox_changer(skys, "skybox_changer", "0", "Change Skybox to this skybox",
|
||||
"Change Skybox to this skybox, only changes on map load");
|
||||
static CatVar halloween_mode(CV_SWITCH, "halloween_mode", "Forced Halloween mode", "forced tf_forced_holiday 2");
|
||||
void LevelInit_hook(void *_this, const char *newmap)
|
||||
{
|
||||
static const LevelInit_t original =
|
||||
@ -1024,6 +1025,14 @@ void LevelInit_hook(void *_this, const char *newmap)
|
||||
bool load_success = LoadNamedSkys(skynum[(int) skybox_changer]);
|
||||
logging::Info("Skybox Loading successful: %s",
|
||||
load_success ? "true" : "false");
|
||||
if (halloween_mode) {
|
||||
ConVar* holiday = g_ICvar->FindCommand("tf_forced_holiday");
|
||||
holiday->SetValue(2);
|
||||
}
|
||||
else if (ConVar(g_ICvar->FindCommand("tf_forced_holiday")).m_nValue == 2) {
|
||||
ConVar* holiday = g_ICvar->FindCommand("tf_forced_holiday");
|
||||
holiday->SetValue(2);
|
||||
}
|
||||
g_IEngine->ClientCmd_Unrestricted("exec cat_matchexec");
|
||||
hacks::shared::aimbot::Reset();
|
||||
chat_stack::Reset();
|
||||
|
@ -655,6 +655,7 @@ static const std::string list_tf2 = R"(
|
||||
]
|
||||
"Misc" [
|
||||
"Misc Menu"
|
||||
"halloween_mode"
|
||||
"name"
|
||||
"disconnect_reason"
|
||||
"pure_bypass"
|
||||
|
Reference in New Issue
Block a user