EscapeTheBackrooms_Internal/EscapeTheBackroomsGUiTest/dllmain.cpp

1548 lines
48 KiB
C++
Raw Normal View History

#include <thread>
2024-04-20 20:19:09 +08:00
#include <algorithm>
#include "vcpkg_Out/include/MinHook.h"
#include "SDK/SDK.hpp"
#include "Out/IncludeFile.h"
2024-04-20 20:19:09 +08:00
#include "Cheat.h"
2024-08-10 05:55:30 +08:00
#include "Config/Config.h"
2024-04-20 20:19:09 +08:00
FILE* ConsoleFile = nullptr;
2024-04-20 20:19:09 +08:00
typedef void (*PostRender_t)(SDK::UObject* pObject, SDK::UCanvas* pCanvas);
PostRender_t origin_renderer;
typedef void(__stdcall* fnProcessEvent)(SDK::UObject* Object, SDK::UFunction* Function, void* Params);
fnProcessEvent fnProcessEventOrigin;
fnProcessEvent fnProcessEventTarget;
std::vector<ByteData> Datas;
ConfigSystem* configsys;
CWINGui::GifData* GifBackground;
void ExitCheat();
2024-04-20 20:19:09 +08:00
std::wstring stringToWideString(const std::string& str)
{
std::wstring wstr(str.length(), L' ');
std::copy(str.begin(), str.end(), wstr.begin());
return wstr;
}
void ConsoleExit() {
HWND ConsoleHandle = GetConsoleWindow();
FreeConsole();
SendMessage(ConsoleHandle, WM_CLOSE, 0, 0);
}
namespace FunctionPtrsProcessEvent {
enum FunctionDefs
{
Lobby_PlayerController_COC_KickedFromLobby,
MP_PlayerController_COC_KickedFromLobby,
W_Kicked_C_Tick,
Lobby_PlayerController_CReceiveBeginPlay,
BPCharacter_Demo_C_SpawnEquipItem_SERVER,
APlayerController_ServerChangeName,
AMP_PlayerController_C_ReceiveEndPlay,
Lobby_PlayerController_C_ReceiveEndPlay
};
void* FunctionHooks[9];
const size_t FunctionHookSize = sizeof(FunctionHooks) / 8;
2024-04-20 20:19:09 +08:00
void NullObjects() {
for (size_t i = 0; i < FunctionHookSize; i++)
{
FunctionHooks[i] = nullptr;
}
2024-04-20 20:19:09 +08:00
}
};
//SDK::APlayerController::IsInputKeyDown
2024-04-20 20:19:09 +08:00
void ProcessEventHook(SDK::UObject* Obj, SDK::UFunction* Function, void* Parms) {
using namespace FunctionPtrsProcessEvent;
2024-04-20 20:19:09 +08:00
auto execF = Function;
2024-04-20 20:19:09 +08:00
#pragma region FindPointers
if (!FunctionPtrsProcessEvent::FunctionHooks[Lobby_PlayerController_COC_KickedFromLobby]) {
2024-04-20 20:19:09 +08:00
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::ALobby_PlayerController_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("Lobby_PlayerController_C", "OC_KickedFromLobby");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[0] = Func;
2024-04-20 20:19:09 +08:00
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[MP_PlayerController_COC_KickedFromLobby]) {
2024-04-20 20:19:09 +08:00
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::AMP_PlayerController_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("MP_PlayerController_C", "OC_KickedFromLobby");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[1] = Func;
2024-04-20 20:19:09 +08:00
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[W_Kicked_C_Tick]) {
2024-04-20 20:19:09 +08:00
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::UW_Kicked_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("W_Kicked_C", "Tick");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[2] = Func;
2024-04-20 20:19:09 +08:00
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[Lobby_PlayerController_CReceiveBeginPlay]) {
2024-04-20 20:19:09 +08:00
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::ALobby_PlayerController_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("Lobby_PlayerController_C", "ReceiveBeginPlay");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[3] = Func;
2024-04-20 20:19:09 +08:00
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[BPCharacter_Demo_C_SpawnEquipItem_SERVER]) {
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::ABPCharacter_Demo_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("BPCharacter_Demo_C", "SpawnEquipItem_SERVER");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[4] = Func;
}
}
}
}
2024-04-20 20:19:09 +08:00
static std::vector < std::pair<SDK::APlayerController*, std::vector<std::wstring>> > PlayerNameChanges;
if (!FunctionPtrsProcessEvent::FunctionHooks[APlayerController_ServerChangeName]) {
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::APlayerController::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("PlayerController", "ServerChangeName");
if (Func)
{
PlayerNameChanges.clear();
FunctionPtrsProcessEvent::FunctionHooks[5] = Func;
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[AMP_PlayerController_C_ReceiveEndPlay]) {
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::ABPCharacter_Demo_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("MP_PlayerController_C", "ReceiveEndPlay");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[6] = Func;
}
}
}
}
if (!FunctionPtrsProcessEvent::FunctionHooks[Lobby_PlayerController_C_ReceiveEndPlay]) {
static ULONGLONG TickCount_ = 0;
auto Tick = GetTickCount64();
if (Tick >= TickCount_) {
TickCount_ = Tick + 100;
auto Class_ = SDK::ALobby_PlayerController_C::StaticClass();
if (Class_)
{
auto Func = Class_->GetFunction("Lobby_PlayerController_C", "ReceiveEndPlay");
if (Func)
{
FunctionPtrsProcessEvent::FunctionHooks[7] = Func;
}
}
}
}
2024-04-20 20:19:09 +08:00
#pragma endregion
2024-04-20 20:19:09 +08:00
if (execF == FunctionHooks[Lobby_PlayerController_COC_KickedFromLobby] || execF == FunctionHooks[MP_PlayerController_COC_KickedFromLobby]) {
2024-04-20 20:19:09 +08:00
Cheat::MainRun(nullptr);
if (Obj == Cheat::PlayerController) {
SDK::ABP_BasePlayerController_C* plyCC = (SDK::ABP_BasePlayerController_C*)Obj;
Cheat::Message("You were kicked by Host!");
return;
}
2024-04-20 20:19:09 +08:00
}
if (execF == FunctionHooks[Lobby_PlayerController_CReceiveBeginPlay]) {
2024-04-20 20:19:09 +08:00
Cheat::MainRun(nullptr);
if (Obj != Cheat::PlayerController) {
SDK::ALobby_PlayerController_C* Controller = (SDK::ALobby_PlayerController_C*)Obj;
if (Controller->PlayerState)
Cheat::Message(std::string("Player " + Controller->PlayerState->PlayerNamePrivate.ToString() + "joined your Game!"));
2024-04-20 20:19:09 +08:00
}
else
{
}
}
if (execF == FunctionHooks[W_Kicked_C_Tick]) {
2024-04-20 20:19:09 +08:00
auto obj_ = (SDK::UW_Kicked_C*)Obj;
auto params_ = (SDK::Params::UW_Kicked_C_Tick_Params*)Parms;
auto mssg = Cheat::TextLib->Conv_StringToText(SDK::FString(L"Host the Broke ass fella kicked you lmao"));
2024-04-20 20:19:09 +08:00
obj_->TextBlock_Message->SetText(mssg);
}
if (execF == FunctionHooks[BPCharacter_Demo_C_SpawnEquipItem_SERVER]) {
if (Settings::AntiCheat && Settings::AC_InvalidItemSpawner)
{
auto CallingPawn = (SDK::ABPCharacter_Demo_C*)Obj;
2024-04-20 20:19:09 +08:00
auto params_ = (SDK::Params::ABPCharacter_Demo_C_SpawnEquipItem_SERVER_Params*)Parms;
2024-04-20 20:19:09 +08:00
bool IsLocalHost = false;
bool IsLocalPlayer = false;
2024-04-20 20:19:09 +08:00
SDK::AMP_GameMode_C* GameMode = nullptr;
auto world = Cheat::Engine->GameViewport->World;
if (CallingPawn->Controller)
{
IsLocalHost = true;
GameMode = (SDK::AMP_GameMode_C*)world->AuthorityGameMode;
if (auto LocalPlayer = world->OwningGameInstance->LocalPlayers[0]; LocalPlayer && LocalPlayer->PlayerController) {
IsLocalPlayer = (CallingPawn->Controller == LocalPlayer->PlayerController);
}
}
2024-04-20 20:19:09 +08:00
if (CallingPawn->PlayerState)
Cheat::Message(std::format("Spawned Item {} by Player: {}", (!Cheat::IsClassOfClass(params_->ItemClass, SDK::ABP_Item_C::StaticClass()) ? "Invalid Item" : params_->ItemClass->GetName()), PlayerStuff::Player::SanitizeString(CallingPawn->PlayerState->GetPlayerName().ToString())));
else //Invalid Player
return;
if (!IsLocalPlayer) {
if (auto ItemClass = params_->ItemClass; ItemClass)
{
if (!Cheat::IsClassOfClass(params_->ItemClass, SDK::ABP_Item_C::StaticClass())) {
if (IsLocalHost) {
const char* Reason = "Non Item Class was passed to SpawnEquipItem";
if (Settings::AC_KickOnViolation)
{
auto re = FunctionsSpecial::KickPlayer(world, CallingPawn, Reason);
Cheat::Message(re);
}
else
Cheat::Message(Reason);
return;
}
}
}
else
{
if (IsLocalHost)
{
const char* Reason = "Nullpointer was passed as Class to SpawnEquipItem";
if (Settings::AC_KickOnViolation)
{
auto re = FunctionsSpecial::KickPlayer(world, CallingPawn, Reason);
Cheat::Message(re);
}
else
Cheat::Message(Reason);
return;
}
}
}
}
}
2024-04-20 20:19:09 +08:00
if (execF == FunctionHooks[APlayerController_ServerChangeName]) {
if (Settings::AntiCheat && Settings::AC_NameChanger)
{
auto CallingController = (SDK::APlayerController*)Obj;
auto paramsServerChangeName = (SDK::Params::APlayerController_ServerChangeName_Params*)Parms;
std::wstring NewName = paramsServerChangeName->S.ToWString();
auto world = Cheat::Engine->GameViewport->World;
2024-08-10 05:55:30 +08:00
bool IsLocalPlayer = false;
if (auto LocalPlayer = world->OwningGameInstance->LocalPlayers[0]; LocalPlayer && LocalPlayer->PlayerController) {
2024-08-10 05:55:30 +08:00
IsLocalPlayer = (CallingController == LocalPlayer->PlayerController);
}
2024-08-10 05:55:30 +08:00
if (!IsLocalPlayer) {
for (size_t i = 0; i < PlayerNameChanges.size(); i++)
{
if (PlayerNameChanges[i].first == CallingController) {
if (PlayerNameChanges[i].second.size() > Settings::AC_NameChangerAllowedChanges) {
std::string reason = "Player tried to Change Name too soon again.";
if (Settings::AC_KickOnViolation)
{
auto re = FunctionsSpecial::KickPlayer(world, CallingController->Character, reason);
Cheat::Message(re);
}
else
Cheat::Message(reason);
return;
}
else
{
PlayerNameChanges[i].second.push_back(NewName);
break;
}
}
}
}
}
}
if (execF == FunctionHooks[AMP_PlayerController_C_ReceiveEndPlay]) {
if (Settings::AntiCheat && Settings::AC_NameChanger)
{
auto CallingController = (SDK::AMP_PlayerController_C*)Obj;
for (auto It = PlayerNameChanges.begin(); It != PlayerNameChanges.end();)
{
auto ItVal = *It;
if (ItVal.first == CallingController) {
It = PlayerNameChanges.erase(It);
}
else
{
It++;
}
}
}
}
if (execF == FunctionHooks[Lobby_PlayerController_C_ReceiveEndPlay]) {
if (Settings::AntiCheat && Settings::AC_NameChanger)
{
auto CallingController = (SDK::ALobby_PlayerController_C*)Obj;
for (auto It = PlayerNameChanges.begin(); It != PlayerNameChanges.end();)
{
auto ItVal = *It;
if (ItVal.first == CallingController) {
It = PlayerNameChanges.erase(It);
}
else
{
It++;
}
}
}
}
2024-04-20 20:19:09 +08:00
return fnProcessEventOrigin(Obj, Function, Parms);
}
SDK::UTexture2D* ImageTexture = nullptr;
2024-04-20 20:19:09 +08:00
void MainRender(SDK::UObject* object, SDK::UCanvas* Canvas) {
static bool ShowHelp = true;
2024-04-20 20:19:09 +08:00
if (Canvas) {
//init menu
static Cheat::UsefullFuncs::RGBA RGBShit = { 0, 0, 0, 255 };
static SDK::FLinearColor RGBLinear = SDK::FLinearColor(Cheat::UsefullFuncs::RGBATOFLinear(RGBShit.R, RGBShit.G, RGBShit.B, RGBShit.A));
Cheat::UsefullFuncs::Rainbowify(&RGBShit); //follows RGBA Rainbow values
2024-04-20 20:19:09 +08:00
RGBLinear = SDK::FLinearColor(Cheat::UsefullFuncs::RGBATOFLinear(RGBShit.R, RGBShit.G, RGBShit.B, RGBShit.A));
if (Settings::ShowWatermark) {
Cheat::DrawTextRGBWithFString(Canvas, SDK::FString(L"Made by Senpai42"), SDK::FVector2D(10, 10), RGBLinear, false, 1.1f);
}
ULONGLONG CountCurrent = GetTickCount64();
static std::wstring FlyText = L" ";
static bool UseSteamID = false;
static ULONGLONG CountUpdateText = 0;
if (CountCurrent >= CountUpdateText) {
CountUpdateText = CountCurrent + 200;
if (!Settings::VelocityFly)
FlyText = L"(ClientSided)";
else
FlyText = L"(ServerSided)";
UseSteamID = Backend::HostSteamID_Clean != "";
}
CWINGui::SetupCanvas(Canvas);
Cheat::MainRun(Canvas);
ZeroGUI::Input::Handle();
if (Settings::SpectatorList) {
const int SpectatorListPositionY = 60.0f;
const int Distance = 12.0f;
int Size = 0;
Cheat::DrawTextRGBWithFString(Canvas, SDK::FString(L"Spectator List:"), SDK::FVector2D(10, SpectatorListPositionY), SDK::FLinearColor(0.0f, 1.0f, 0.0f, 1.0f), false, 1.1f);
2024-04-20 20:19:09 +08:00
for (size_t i = 0; i < PlayerStuff::PlayerList.size(); i++)
{
if (PlayerStuff::PlayerList[i].IsSpectatingLocalPlayer(Cheat::PlayerController)) {
Cheat::DrawTextRGBWithFString(Canvas, SDK::FString(PlayerStuff::PlayerList[i].Sanitizedname.c_str()), SDK::FVector2D(26 , SpectatorListPositionY + 21.0f + (Distance * Size)), SDK::FLinearColor(0.0f, 1.0f, 0.0f, 1.0f), false, 1.1f);
Size++;
}
}
}
const SDK::FVector2D DefaultValue = { 500.0f, 650.0f };
static SDK::FVector2D WindowSize = DefaultValue;
2024-04-20 20:19:09 +08:00
if (ShowHelp || Settings::NewVersion_) {
static SDK::FVector2D WindowPos = { 500.0f, 475.0f };
if (ShowHelp) {
if (CWINGui::Window("?", &WindowPos, WindowSize, ShowHelp)) {
CWINGui::Text(L"This Trainer was Originally Uploaded to Unknowncheats.");
CWINGui::Text(L"If you didnt Download it from Unknowncheats i would be carefull");
CWINGui::Text(L""), CWINGui::SameLine();
if (CWINGui::Button(L"Okay blud", SDK::FVector2D{ 110, 35 })) {
ShowHelp = false;
}
}
}
else
{
if (CWINGui::Window("?", &WindowPos, WindowSize, Settings::NewVersion_)) {
CWINGui::Text(std::format(L"New Version {}!!!", Settings::CheatVersion).c_str());
CWINGui::Text(L"* Fixed Memory Leak Bug");
CWINGui::Text(L"* Fixed Anti Cheat (plus its off now by Default)");
2024-07-21 09:03:38 +08:00
CWINGui::Text(L"* Added Working Config System");
CWINGui::Text(L""), CWINGui::SameLine();
if (CWINGui::Button(L"Okay blud....", SDK::FVector2D{ 110, 35 })) {
Settings::NewVersion_ = false;
}
}
}
CWINGui::Draw_Cursor(ShowHelp);
CWINGui::Render();
if (GetAsyncKeyState(VK_DELETE) & 1)
ExitCheat();
return origin_renderer(object, Canvas);
}
if (CWINGui::Window("Escape The Backrooms Internal", &Settings::WindowPos, WindowSize, Settings::Open, GifBackground))
2024-04-20 20:19:09 +08:00
{
static int tab = 0;
if (CWINGui::ButtonTab(L"Game Shit", SDK::FVector2D{ 110, 35 }, tab == 0)) { tab = 0; CWINGui::ChangeWindowSize(WindowSize, { 500.0f, std::max<float>(DefaultValue.Y, 640.0f) }); }
if (CWINGui::ButtonTab(L"World Visuals", SDK::FVector2D{ 110, 35 }, tab == 1)) { tab = 1; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Miscellaneous", SDK::FVector2D{ 110, 35 }, tab == 2)) { tab = 2; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Item Spawner", SDK::FVector2D{ 110, 35 }, tab == 3)) { tab = 3; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Level Miscs", SDK::FVector2D{ 110, 35 }, tab == 4)) { tab = 4; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Host Info", SDK::FVector2D{ 110, 35 }, tab == 5)) { tab = 5; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
2024-04-20 20:19:09 +08:00
#ifdef Gatekeep
if (CWINGui::ButtonTab(L"Chat Spoofer", SDK::FVector2D{ 110, 35 }, tab == 6)) { tab = 6; CWINGui::ChangeWindowSize(WindowSize, { 540.0f, std::max<float>(DefaultValue.Y, 625.0f) }); }
2024-04-20 20:19:09 +08:00
#endif
if (CWINGui::ButtonTab(L"Level Loader", SDK::FVector2D{ 110, 35 }, tab == 7)) { tab = 7; CWINGui::ChangeWindowSize(WindowSize, { 740.0f, std::max<float>(DefaultValue.Y, 575.0f) }); }
2024-04-20 20:19:09 +08:00
if (CWINGui::ButtonTab(L"Players", SDK::FVector2D{ 110, 35 }, tab == 8)) { tab = 8; CWINGui::ChangeWindowSize(WindowSize, DefaultValue);}
if (CWINGui::ButtonTab(L"Hosting Options", SDK::FVector2D{ 110, 35 }, tab == 10)) { tab = 10; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (Settings::Spawner_ && CWINGui::ButtonTab(L"Spawner Options", SDK::FVector2D{ 110, 35 }, tab == 11)) { tab = 11; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Config", SDK::FVector2D{ 110, 35 }, tab == 12)) { tab = 12; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
if (CWINGui::ButtonTab(L"Anti Cheat", SDK::FVector2D{ 110, 35 }, tab == 13)) { tab = 13; CWINGui::ChangeWindowSize(WindowSize, DefaultValue); }
2024-04-20 20:19:09 +08:00
CWINGui::NextColumn(140.0f);
CWINGui::Text(L"");
switch (tab)
{
case 0: //General Game Options
2024-04-20 20:19:09 +08:00
CWINGui::Checkbox(L"Peace Mode (Removes any Entity)", &Settings::PeacefullMode);
CWINGui::Checkbox(L"No Cameras", &Settings::NoCams);
CWINGui::Checkbox(L"NoClip (Client Sided)", &Settings::Noclip);
CWINGui::Checkbox(std::wstring(LR"(Player "Fly" (Press Space))" + FlyText).c_str(), &Settings::PlayerFly);
CWINGui::Checkbox(LR"(Velocity Fly)", &Settings::VelocityFly);
CWINGui::SliderFloat(L"Flyspeed (Boat & Player)", &Settings::PlayerFlySpeedY, 0.01f, 1000.0f);
2024-04-20 20:19:09 +08:00
if (CWINGui::Button(L"Hide Doors", SDK::FVector2D{ 110, 35 })) {
Settings::ActorEvent = true;
2024-08-10 05:55:30 +08:00
Settings::HideDoors = true;
2024-04-20 20:19:09 +08:00
}
//if (CWINGui::Button(L"Force Admin", SDK::FVector2D{ 110, 35 })) {
// Settings::ForceAdmin = true;
//}
if (CWINGui::Button(L"TP to Exit", SDK::FVector2D{ 110, 35 })) {
Settings::TpToExit = true;
}
if (CWINGui::Button(L"Killysf", SDK::FVector2D{ 110, 35 })) {
Settings::Kys = true;
}
if (CWINGui::Button(L"Bring Tapes", SDK::FVector2D{ 110, 35 })) {
Settings::BringAllItems = true;
}
#ifdef DEBUG
2024-04-20 20:19:09 +08:00
if (CWINGui::Button(L"Unposses Pawn", SDK::FVector2D{ 110, 35 })) {
Settings::UnpossePawns = true;
}
#endif
if (CWINGui::Button(L"Trigger all trigger", SDK::FVector2D{ 110, 35 })) {
Settings::InteractEvent = true;
}
if (CWINGui::Button(L"Drop many Items", SDK::FVector2D{ 110, 35 })) {
Settings::LagGame = true;
}
if (CWINGui::Button(L"Clear Items", SDK::FVector2D{ 110, 35 })) {
Settings::ClearItems = true;
}
#ifdef DEBUG
if (CWINGui::Button(L"Test Print", SDK::FVector2D{ 110, 35 })) {
Settings::TestEvent_PrintSteamIDS = true;
}
#endif // DEBUG
2024-04-20 20:19:09 +08:00
if (CWINGui::Button(L"Alloc Console", SDK::FVector2D{ 110, 35 })) {
Settings::wtf_ = true;
/*auto arrayAudio = Cheat::AudioData(std::vector<int8>{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0});
Cheat::PlayerController->SRV_SendVoiceData((SDK::TArray<int8>)arrayAudio, false, false);*/
}
//if (CWINGui::Button(L"Force Ownself", SDK::FVector2D{ 110, 35 })) {
// Settings::OwnSelf = true;
//}
break;
case 1: //Visual Options
2024-04-20 20:19:09 +08:00
//CWINGui::Checkbox(L"Main Switch", &Settings::Esp);
CWINGui::Checkbox(L"Spectator List", &Settings::SpectatorList);
CWINGui::Checkbox(L"Enemy Esp", &Settings::EnemyEsp);
CWINGui::Checkbox(L"Player Esp", &Settings::PlayerEsp);
CWINGui::Checkbox(L"Item Esp", &Settings::ItemEsp);
CWINGui::Checkbox(L"Interactables Esp", &Settings::InteractablesEsp);
CWINGui::Checkbox(L"Boat Esp", &Settings::BoatEsp);
CWINGui::Checkbox(L"Actor Esp", &Settings::ActorEsp);
#ifdef DEBUG
CWINGui::Checkbox(L"Enemy Chams", &Settings::EnemyChams);
#endif
2024-04-20 20:19:09 +08:00
CWINGui::Checkbox(L"Flashlight RGB", &Settings::RGBFlashlight);
CWINGui::Checkbox(L"Enviroment RGB", &Settings::EnviromentRGB);
break;
case 2: //Misc Options
2024-04-20 20:19:09 +08:00
CWINGui::Checkbox(L"Unlock Playercounter (100 Players)", RGBLinear, &Settings::UnlockPlayers);
CWINGui::Checkbox(L"Freecam (Activate with J, Teleport with F1)", SDK::FLinearColor{ 0.0f, 1.0f, 0.0f, 1.0f }, &Settings::Freecam);
CWINGui::Checkbox(L"Spawner (Lets you Spawn stuff!)", SDK::FLinearColor{ 0.92f, 0.22f, 0.91f, 1.0f }, &Settings::Spawner_);
2024-04-20 20:19:09 +08:00
CWINGui::Checkbox(L"Watermark", &Settings::ShowWatermark);
CWINGui::Checkbox(L"Boat Fly", &Settings::BoatFly);
CWINGui::Checkbox(L"RapidFire", &Settings::Rapidfire);
CWINGui::Checkbox(L"Infinite Stamina", &Settings::InfiniteStamina);
CWINGui::Checkbox(L"Infinite Sanity", &Settings::InfiniteSanity);
CWINGui::Checkbox(L"Easy Balance", &Settings::NoStumble);
CWINGui::Checkbox(L"GodMode (Host Only)(Works only on some Enemies)", &Settings::Godmode);
CWINGui::Checkbox(L"Speedhack", &Settings::SpeedHack);
CWINGui::Checkbox(L"Interactables always on", &Settings::InteractAll);
CWINGui::Checkbox(L"NameChanger", &Settings::NameChanger);
/*CWINGui::Checkbox(L"NameChanger Random", &Settings::RandomName);*/
CWINGui::Checkbox(L"Boat Speedhack", &Settings::BoatSpeedhack); CWINGui::SameLine(); CWINGui::last_element_pos.X += 20.0f, CWINGui::last_element_pos.Y -= 20.0f; CWINGui::SliderFloat(L"Boat Speed", &Settings::BoatSpeed, 100, 10000);
CWINGui::Checkbox(L"Speedhack", &Settings::SpeedHack); CWINGui::SameLine(); CWINGui::last_element_pos.X -= 80.0f, CWINGui::last_element_pos.Y -= 10.0f; CWINGui::SliderFloat(L"Speed", &Settings::Speed, 100, 10000);
CWINGui::Checkbox(L"Fov Changer", &Settings::FovChanger); CWINGui::SameLine(); CWINGui::last_element_pos.X -= 80.0f; CWINGui::SliderFloat(L"Fov", &Settings::Fov, 10.0f, 200.0f);
2024-04-20 20:19:09 +08:00
//{
// static bool hasfinishedConsole = false;
// static std::wstring outputConsole = L"";
// if (CWINGui::Button(L"Test bypass CurseFilter", SDK::FVector2D{ 125, 35 })) {
//
// std::thread(Cheat::GetInputW, "Enter a Something: ", std::ref(outputConsole), std::ref(hasfinishedConsole)).detach();
// }
// if (hasfinishedConsole) {
// hasfinishedConsole = false;
// auto value = Algorithm_(outputConsole);
// Cheat::MessageW(value);
// }
//}
if (Settings::NameChanger)
{
static bool hasfinishedConsole = false;
static bool hasfinishedConsoleBefore = true;
static std::wstring outputConsole = L"";
if (hasfinishedConsole) {
hasfinishedConsole = false;
hasfinishedConsoleBefore = true;
Settings::SetName_NameChanger(outputConsole);
}
if ( CWINGui::Button(L"Set Name (Console)", SDK::FVector2D{ 125, 35 }) ){
if (hasfinishedConsoleBefore) {
hasfinishedConsoleBefore = false;
outputConsole = L"";
std::thread(Cheat::GetInputW, "Enter a Name: ", std::ref(outputConsole), std::ref(hasfinishedConsole)).detach();
}
}
}
2024-04-20 20:19:09 +08:00
break;
case 3: // Server Sided Item Spawner (Spawns on Ground)
2024-04-20 20:19:09 +08:00
CWINGui::Text(L"Item Spawner:");
/*CWINGui::Checkbox(L"Silent Spawner", &Settings::SilentItemSpawner);*/
if (CWINGui::Button(L"Give Diving Helmet", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::DivingHelmet;
}
if (CWINGui::Button(L"Give Camera", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Camera;
}
if (CWINGui::Button(L"Give Glowstick", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Glowstick;
}
if (CWINGui::Button(L"Give Thermometer", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Thermometer;
}
if (CWINGui::Button(L"Give WalkieTalkie", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::WalkiTalkie;
}
if (CWINGui::Button(L"Give Almondextract ", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::AlmondExtract;
}
if (CWINGui::Button(L"Give Firework ", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Firework;
}
if (CWINGui::Button(L"Give Ticket ", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Ticket;
}
if (CWINGui::Button(L"Give Rope", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Rope;
}
CWINGui::NextColumn(290.0f);
CWINGui::Text(L"");
if (CWINGui::Button(L"Give Flashlight", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Flashlight;
}
if (CWINGui::Button(L"Give Flaregun", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Flaregun;
}
if (CWINGui::Button(L"Give Almondwater", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Almondwater;
}
if (CWINGui::Button(L"Give Chainsaw", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Chainsaw;
}
if (CWINGui::Button(L"Give Bugspray", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Bugspray;
}
if (CWINGui::Button(L"Give Lidarscanner", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Lidar;
}
if (CWINGui::Button(L"Give Crowbar", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Crowbar;
}
if (CWINGui::Button(L"Give Juice", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Speedwateridk;
}
if (CWINGui::Button(L"Give Painwater >.< ", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Pain;
}
if (CWINGui::Button(L"Give Jelly", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnItem = true;
Settings::ItemToSpawn = Settings::Items::Jelly;
}
break;
case 4: //Level Misc stuff. I havent really worked on this yet
2024-04-20 20:19:09 +08:00
CWINGui::Text(stringToWideString(Backend::LevelName).c_str());
/*CWINGui::Text(L"Coming soon, since this shit takes Time!");*/
Backend::RunLevelBackend();
break;
case 5: //Current Host Information
2024-04-20 20:19:09 +08:00
CWINGui::Text(stringToWideString(UseSteamID ? "Host SteamID: " + Backend::HostSteamID_Clean : "No Host Detected!").c_str());
if (CWINGui::Button(L"Open Profile", SDK::FVector2D{ 125, 35 })) {
if (Backend::HostSteamID_Clean != "")
system(std::string(std::string("start ") + R"(https://steamcommunity.com/profiles/)" + Backend::HostSteamID_Clean + R"(/)").c_str());
else
{
Cheat::Message("Can't Open Steam Profile since no Host has been Detected!", FOREGROUND_RED);
}
}
break;
case 6: //Name Spoofer for Chat
2024-04-20 20:19:09 +08:00
CWINGui::Text(std::wstring(L"Spoofed as Player: " + (Settings::PlayerPicked != -1 ? PlayerStuff::PlayerList[Settings::PlayerPicked].name : std::wstring(L"None")) ).c_str());
{
CWINGui::NextColumn(140.0f + (190 / 2));
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
CWINGui::Text(L"");
if (CWINGui::Button(L"Change Name Back", SDK::FVector2D{ 125, 35 })) {
Settings::PlayerPicked = -1;
Settings::ChangeNameEvent = true;
}
CWINGui::NextColumn(140.0f);
CWINGui::Text(L"");
CWINGui::Text(L"");
}
{
static bool hasfinishedChatSpoof = false;
static bool hasfinishedChatSpoofBefore = true;
static std::wstring outputConsoleChatSpoof = L"";
if (hasfinishedChatSpoof) {
hasfinishedChatSpoof = false;
hasfinishedChatSpoofBefore = true;
Settings::MessageSpoof = outputConsoleChatSpoof;
Settings::SpoofChatEvent = true;
}
for (size_t i = 0; i < PlayerStuff::PlayerList.size(); i++)
{
if (i % 10 == 0 && i >= 10) {
int Row = i / 10;
CWINGui::NextColumn(140.0f + (190 * Row));
CWINGui::Text(L"");
CWINGui::Text(L"");
}
if (CWINGui::Button(std::wstring(PlayerStuff::PlayerList[i].name).c_str(), SDK::FVector2D{ 180, 25 }))
{
Settings::PlayerPicked = i;
Settings::NameOfVictim = PlayerStuff::PlayerList[i].name;
if (hasfinishedChatSpoofBefore) {
hasfinishedChatSpoofBefore = false;
outputConsoleChatSpoof = L"";
std::thread(Cheat::GetInputW, "Enter a Message: ", std::ref(outputConsoleChatSpoof), std::ref(hasfinishedChatSpoof)).detach();
}
}
}
}
break;
case 7: //Level Loader
2024-04-20 20:19:09 +08:00
CWINGui::Text(L"Level Loader 1.0");
if (CWINGui::Button(L"Main Menu", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"MainMenuMap";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level 0", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level0";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"GarageLevel 1", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"TopFloor";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Garage Level 2", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"MiddleFloor";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Garage Level 3", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"GarageLevel2";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Garage Level 4", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"BottomFloor";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Hub Level", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"TheHub";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Pipe Level", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Pipes";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Electrical Station", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"ElectricalStation";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Office", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Office";
Settings::LoadLevel_ = true;
}
CWINGui::NextColumn(260.0f);
CWINGui::Text(L"");
CWINGui::Text(L"");
if (CWINGui::Button(L"Hotel 1", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Hotel";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Hotel 2", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Floor3";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Boiler Room", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"BoilerRoom";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level Fun", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"LevelFun";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Poolrooms 1", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Poolrooms";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level !!!!", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"LevelRun";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"TheEnd", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"TheEnd";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"InfiniteStairs", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level922";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level94", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level94";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"ClownKingdom", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"AnimatedKingdom";
Settings::LoadLevel_ = true;
}
CWINGui::NextColumn(380.0f);
CWINGui::Text(L"");
CWINGui::Text(L"");
if (CWINGui::Button(L"LightsOut", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"LightsOut";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"OceanMap", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"OceanMap";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"CaveLevel", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"CaveLevel";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level05", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level05";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level9", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level9";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"AbandonedBase", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"AbandonedBase";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level10", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level10";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level3999", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level3999";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level07", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level07";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Snackrooms", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Snackrooms";
Settings::LoadLevel_ = true;
}
CWINGui::NextColumn(500.0f);
CWINGui::Text(L"");
CWINGui::Text(L"");
if (CWINGui::Button(L"Level !!!!2", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"LevelDash";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Level188 Exp", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level188_Expanded";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Poolrooms Exp", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Poolrooms_Expanded";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Poolrooms_Sub 1", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"WaterPark_Level01_P";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Poolrooms_Sub 2", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"WaterPark_Level02_P";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Poolrooms_Sub 3", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"WaterPark_Level03_P";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"LevelFun Exp", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"LevelFun_Expanded";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"LevelFun_Sub 1", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Zone1_Modified";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"LevelFun_Sub 2", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Zone4";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"LevelFun_Sub 3", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Zone3_Baked";
Settings::LoadLevel_ = true;
}
CWINGui::NextColumn(620.0f);
CWINGui::Text(L"");
CWINGui::Text(L"");
if (CWINGui::Button(L"LevelFun_Sub 4", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Zone2_Modified";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"School Level", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"Level52";
Settings::LoadLevel_ = true;
}
if (CWINGui::Button(L"Final Level", SDK::FVector2D{ 110, 35 })) {
Settings::LevelToLoad = L"TunnelLevel";
Settings::LoadLevel_ = true;
}
break;
case 8: // Player List to Pick for Trolling stuff or General stuff like Teleport to them and so so
2024-04-20 20:19:09 +08:00
for (size_t i = 0; i < PlayerStuff::PlayerList.size(); i++)
{
if (i % 10 == 0 && i >= 10) {
int Row = i / 10;
CWINGui::NextColumn(140.0f + (220 * Row));
CWINGui::Text(L"");
}
auto player = PlayerStuff::PlayerList[i];
if (CWINGui::Button(std::wstring(L"Name: " + player.Sanitizedname + L", ID: " + std::to_wstring(player.PlayerID)).c_str(), SDK::FVector2D{ 210, 35 })) {
Settings::PlayerPicked_S = i;
tab = 9;
WindowSize = { 740.0f, 575.0f };
}
}
break;
case 9: // Options to Mess with Current Picked Player
2024-04-20 20:19:09 +08:00
if (Settings::PlayerPicked_S != -1)
{
auto player = PlayerStuff::PlayerList[Settings::PlayerPicked_S];
CWINGui::Text(std::format(L"Name: {}, Pos: x {}, z {}, y {}, HasController: {}", player.Sanitizedname, player.Location[0], player.Location[1], player.Location[2], player.hasPlayerController ? L"true" : L"false").c_str());
CWINGui::Text(std::format(L"Is Alive: {}", player.Alive ? L"true" : L"false").c_str());
{
auto size_ = player.Inventory_.size();
std::wstring output = size_ == 0 ? L"Empty!" : L"";
for (size_t i = 0; i < size_; i++)
{
output += L"Item: " + Cheat::UsefullFuncs::stringToWideString(player.Inventory_[i].ToString()) + (i != size_ - 1 ? L"," : L"");
}
CWINGui::Text(std::wstring(L"Current ItemSlot: " + player.CurrentSlot + L" ").c_str());
CWINGui::Text(std::wstring(L"Steam ID: " + player.SteamID + ( player.SteamID == Cheat::UsefullFuncs::stringToWideString(Backend::HostSteamID) ? L"(Host SteamID)" : L"") + L" ").c_str());
CWINGui::Text(std::wstring(L"SpectatorName: " + player.SpectatorName).c_str());
CWINGui::Text(std::wstring(L"Inventory: {" + output + L" }").c_str());
}
if (CWINGui::Button(L"Teleport Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::TeleportEventPlayer = true;
}
if (CWINGui::Button(L"Teleport to Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::TeleportToEventPlayer = true;
}
if (CWINGui::Button(L"Respawn Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::EventRespawnPlayer = true;
}
if (CWINGui::Button(L"Spectate FCam Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::SpectateEventPlayer = true;
}
if (CWINGui::Button(L"Spawn Rope Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::SpawnRopeAtEventPlayer = true;
}
2024-04-20 20:19:09 +08:00
if (CWINGui::Button(L"Use item as Player", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::UseItemEventPlayer = true;
}
if (CWINGui::Button(L"Collect Player info", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::EventCollectDataPlayer = true;
}
if (CWINGui::Button(L"Steal Pawn", SDK::FVector2D{ 110, 35 })) {
Settings::Event_PlayerID = player.PlayerID;
Settings::StealPawnEventPlayer = !Settings::StealPawnEventPlayer;
}
2024-04-20 20:19:09 +08:00
}
else
{
WindowSize = { 600.0f, 555.0f };
tab = 8;
break;
}
if (CWINGui::Button(std::wstring(L"Go Back").c_str(), SDK::FVector2D{ 110, 35 })) {
tab = 8;
WindowSize = { 600.0f, 555.0f };
}
break;
case 10: // Hosting Stuff
2024-04-20 20:19:09 +08:00
CWINGui::Checkbox(L"Players Noclip through Players", &Settings::Host_CollisionPlayers);
CWINGui::Checkbox(L"Fun Mode", &Settings::Host_FunMode);
break;
case 11: // Server Sided Spawner
using namespace Settings;
if (CWINGui::Button(L"Spawn Boat", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnerEvent = true;
Settings::SpawnerValue = Settings::Spawner::Spawner_Stuff::Boat;
}
if (CWINGui::Button(L"Spawn Rope", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnerEvent = true;
Settings::SpawnerValue = Settings::Spawner::Spawner_Stuff::Rope;
}
if (CWINGui::Button(L"Spawn Exitzone", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnerEvent = true;
Settings::SpawnerValue = Settings::Spawner::Spawner_Stuff::ExitZone;
}
if (CWINGui::Button(L"Spawn Bactiria", SDK::FVector2D{ 125, 35 })) {
Settings::SpawnerEvent = true;
Settings::SpawnerValue = Settings::Spawner::Spawner_Stuff::BactiriaMonster;
}
break;
case 12: // Config System
{
if (configsys->hasConfigFailed()) //In case of Completly breaking Config System, just hide this Tab
{
tab = 0;
Cheat::Message("Can´t Use Config System, something went really really wrong");
}
static std::wstring CurrentConfigFileName = L"";
if (CurrentConfigFileName == L"") {
CurrentConfigFileName = configsys->GetCurrentConfigNameW();
}
CWINGui::Text((L"Current Config File: " + CurrentConfigFileName).c_str());
if (CWINGui::Button(L"Load Current Config", SDK::FVector2D{ 125, 35 })) {
configsys->ActivateConfig(configsys->GetCurrentConfigName().substr (0, configsys->GetCurrentConfigName().find(".escp")), configsys->GetSettingsPath());
Settings::AddFieldsToConfig(configsys);
configsys->WriteToFields();
//SetName_NameChanger((wchar_t*)Settings::CurrentName_Saved);
}
if (CWINGui::Button(L"Create/Change Config", SDK::FVector2D{ 125, 35 })) {
if (!CurrentInputThread_Config)
{
std::thread::id mainThreadId = std::this_thread::get_id();
std::thread t([mainThreadId]() {
if (std::this_thread::get_id() != mainThreadId) {
std::string Out__ = "";
bool finished = false;
Cheat::GetInput("Enter the Name for the Config File:", Out__, finished);
if (!configsys->ActivateConfig(Out__, configsys->GetSettingsPath())) {
Cheat::Message("Failed to Change Config File!, Changing to Default");
if (!configsys->ActivateConfig("config1", configsys->GetSettingsPath()))
Cheat::Message("Failed to Change to Default Config File. ");
}
Settings::AddFieldsToConfig(configsys);
CurrentInputThread_Config = nullptr;
CurrentConfigFileName = L"";
}
});
CurrentInputThread_Config = &t;
t.detach();
}
}
if (CWINGui::Button(L"Save to Current Config", SDK::FVector2D{ 125, 35 })) {
configsys->WriteToConfigFile();
}
}
break;
2024-04-20 20:19:09 +08:00
case 13://Anti Cheat Options
CWINGui::Checkbox(L"Anti Cheat", &Settings::AntiCheat);
CWINGui::Checkbox(L"Kick on Violations", &Settings::AC_KickOnViolation);
CWINGui::Checkbox(L"Check Bad Item (Item Spawner)", &Settings::AC_InvalidItemSpawner);
CWINGui::Checkbox(L"Check Name Changer", &Settings::AC_NameChanger);
break;
2024-04-20 20:19:09 +08:00
default:
break;
}
2024-04-20 20:19:09 +08:00
}
CWINGui::Draw_Cursor(Settings::Open); //draw ugly ass cursor
//CWINGui::DrawHeart(CWINGui::CursorPos(), 10.0f, { 1.0f, 0.0f, 0.0f, 1.0f });
CWINGui::Render(); //render thing
if (GetAsyncKeyState(VK_INSERT) & 1)Settings::Open = !Settings::Open;
if (GetAsyncKeyState(VK_DELETE) & 1)
ExitCheat();
2024-04-20 20:19:09 +08:00
}
2024-04-20 20:19:09 +08:00
return origin_renderer(object, Canvas);
}
2024-04-20 20:19:09 +08:00
HMODULE module_ = NULL;
void ExitCheat() {
SDK::UWorld* World = SDK::UWorld::GetWorld();
auto GameInstance = World->OwningGameInstance;
auto LocalPlayer = GameInstance->LocalPlayers[0];
SDK::APlayerController* PlayerController = LocalPlayer->PlayerController;
auto ViewportClient = LocalPlayer->ViewportClient;
auto vTable = *(void***)(ViewportClient);
auto vTableWorld = *(void***)(World);
Functions::ChangePointer((uintptr_t)vTable, Offsets::PostRenderIdx, (uintptr_t)origin_renderer);
2024-04-20 20:19:09 +08:00
MH_DisableHook(MH_ALL_HOOKS);
2024-04-20 20:19:09 +08:00
MH_RemoveHook(fnProcessEventTarget);
2024-04-20 20:19:09 +08:00
Backend::NewLevelEvent.UnregisterHandlers();
//Functions::ChangePointer((uintptr_t)vTableWorld, Offsets::ProcessEventIdx, (uintptr_t)fnProcessEventOrigin);
2024-04-20 20:19:09 +08:00
MH_Uninitialize();
2024-08-10 05:55:30 +08:00
//Not Working! Fix else keep massive memory leak! (like 1.2kb which is okay i think)
for (SDK::UTexture2D* texture : GifBackground->TextureArray)
{
//Mark Textures as Garbage then set to nullptr
texture->Flags |= (1 << 21);
texture = nullptr;
2024-04-20 20:19:09 +08:00
}
if (PlayerController) //Clean Up stuff
{
if (!Settings::Open)
PlayerController->AcknowledgedPawn->EnableInput(LocalPlayer->PlayerController);
}
std::cout << "[*] Unhooked Renderfunc\n[*] Freeing Console!\n";
configsys->ActivateConfig("menu_data", configsys->GetSettingsPath());
Settings::TimeSpendCheating += (GetTickCount64() - Settings::TickCountCheatTime);
configsys->AddField(&Settings::TimeSpendCheating, -1);
configsys->WriteToConfigFile(-1);
delete GifBackground;
delete configsys;
Settings::FreeUpCheat = true;
ConsoleExit();
2024-04-20 20:19:09 +08:00
}
void RunThread(HMODULE module_) //doesnt work :(
{
while (!Settings::FreeUpCheat)
{
Sleep(1000);
}
Sleep(500);
FreeLibrary(module_);
}
void MainThread(HMODULE hModule) {
2024-04-20 20:19:09 +08:00
if (!Cheat::Ini()) {
Cheat::Message("Cheat needs to be Updated. Im up to Updating probly already", FOREGROUND_GREEN);
2024-04-20 20:19:09 +08:00
return;
}
SDK::UWorld* World = SDK::UWorld::GetWorld();
auto GameInstance = World->OwningGameInstance;
auto LocalPlayer = GameInstance->LocalPlayers[0];
auto ViewportClient = LocalPlayer->ViewportClient;
// swapping table
auto vTable = *(void***)(ViewportClient);
auto vTableWorld = *(void***)(World);
origin_renderer = (PostRender_t)Functions::ChangePointer((uintptr_t)vTable, Offsets::PostRenderIdx, (uintptr_t)MainRender);
2024-04-20 20:19:09 +08:00
//fnProcessEventOrigin = (fnProcessEvent)Functions::ChangePointer((uintptr_t)vTableWorld, Offsets::ProcessEventIdx, (uintptr_t)ProcessEventHook);
MH_Initialize();
Backend::NewLevelEvent.RegisterHandler(std::bind(FunctionPtrsProcessEvent::NullObjects));
fnProcessEventTarget = (fnProcessEvent)(uintptr_t(GetModuleHandle(0)) + Offsets::ProcessEvent);
MH_CreateHook(reinterpret_cast<LPVOID*>(fnProcessEventTarget), &ProcessEventHook, reinterpret_cast<LPVOID*>(&fnProcessEventOrigin));
MH_EnableHook(reinterpret_cast<LPVOID*>(fnProcessEventTarget));
ZeroGUI::CurrentWindow = FindWindowA("UnrealWindow", "EscapeTheBackrooms ");
2024-04-20 20:19:09 +08:00
2024-04-20 20:19:09 +08:00
if (!origin_renderer || !fnProcessEventOrigin) {
auto renderError = !origin_renderer ? "PostRender" : "";
std::string spacing = renderError != "" ? "," : "";
auto processeventError = !fnProcessEventOrigin ? std::string(spacing + "ProcessEvent").c_str() : "";
std::cout << "Failed to get: " << renderError << processeventError << "" << "!\n";
ConsoleExit();
}
else
{
configsys = new ConfigSystem("menu_data");
float CheatVersion = Settings::CheatVersion;
configsys->AddField(&CheatVersion, -2);
configsys->AddField(&Settings::TimeSpendCheating, -1);
if (!configsys->WriteToFields()) {
configsys->WriteToConfigFile();
Settings::NewVersion_ = true;
}
else
{
if (CheatVersion != Settings::CheatVersion)
Settings::NewVersion_ = true;
auto val = Settings::TimeSpendCheating / 1000;
const char* TimeFormats[] = { "seconds", "minutes", "hours", "days" };
double TimeSplitValue[] = { 1000, 60000, 3600000, 86400000 };
// 0 = Seconds, 1 = Minutes, 2 = Hours, 3 = Days
int state = (val >= 60.0 ? (val /= 60.0, val >= 60.0 ? (val /= 24.0, val >= 24.0 ? 3 : 2) : 1) : 0);
auto Time = Settings::TimeSpendCheating / TimeSplitValue[state];
{ //Calculate the Comma Values too into the time;
int FormatCalculation[] = {0.4, 0.4, 0.4, 0.9};
double a_ = std::round(Time);
double Lösung = Time - (a_ - FormatCalculation[state]);
if (Lösung > 0.0) {
Time = a_ + Lösung;
}
}
Cheat::Message(std::format("Already spent Time Cheating: {:.2f} {}", Time, TimeFormats[state]));
}
Settings::TickCountCheatTime = GetTickCount64();
configsys->ActivateConfig("config1", configsys->GetSettingsPath());
Settings::AddFieldsToConfig(configsys);
Datas = GetBytes();
std::vector<SDK::UTexture2D*> TexturesCopy;
for (size_t i = 0; i < Datas.size(); i++)
{
std::vector<byte> ByteData(Datas[i].ByteSize); std::memcpy(ByteData.data(), Datas[i].DataPointer, Datas[i].ByteSize);
TexturesCopy.push_back(CWINGui::LoadTexture(ByteData));
}
2024-05-10 19:37:38 +08:00
GifBackground = new CWINGui::GifData(TexturesCopy, 50);
}
2024-04-20 20:19:09 +08:00
2024-04-20 20:19:09 +08:00
return;
}
2024-04-20 20:19:09 +08:00
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
AllocConsole();
freopen_s(&ConsoleFile, "CONOUT$", "w", stdout);
freopen_s(&ConsoleFile, "CONOUT$", "w", stderr);
freopen_s(&ConsoleFile, "CONIN$", "r", stdin);
MainThread(hModule);
break;
case DLL_PROCESS_DETACH:
ConsoleExit();
break;
default:
2024-04-20 20:19:09 +08:00
break;
}
return TRUE;
}