settings updated
This commit is contained in:
@@ -299,6 +299,9 @@ void DrawMiscTab() {
|
|||||||
ImGui::Checkbox("Walk in lobby", &settings::walk_in_lobby);
|
ImGui::Checkbox("Walk in lobby", &settings::walk_in_lobby);
|
||||||
|
|
||||||
ImGui::Checkbox("Auto respawn", &settings::auto_respawn);
|
ImGui::Checkbox("Auto respawn", &settings::auto_respawn);
|
||||||
|
|
||||||
|
ImGui::Checkbox("Spoof level", &settings::spoof_level);
|
||||||
|
ImGui::InputInt("New level", &settings::new_level);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ImGui::Checkbox("EXP Modifier", &settings::exp_modifier);
|
ImGui::Checkbox("EXP Modifier", &settings::exp_modifier);
|
||||||
@@ -310,8 +313,6 @@ void DrawMiscTab() {
|
|||||||
ImGui::Checkbox("Azazel Speed", &settings::freeze_azazel);
|
ImGui::Checkbox("Azazel Speed", &settings::freeze_azazel);
|
||||||
ImGui::SliderFloat("Multiplier", &settings::new_azazel_speed, 0, 15);
|
ImGui::SliderFloat("Multiplier", &settings::new_azazel_speed, 0, 15);
|
||||||
|
|
||||||
ImGui::Checkbox("Spoof level", &settings::spoof_level);
|
|
||||||
ImGui::InputInt("New level", &settings::new_level);
|
|
||||||
|
|
||||||
#if _DEBUG
|
#if _DEBUG
|
||||||
ImGui::Spacing();
|
ImGui::Spacing();
|
||||||
@@ -354,7 +355,7 @@ void DrawPlayersTab() {
|
|||||||
|
|
||||||
tabs current_tab = tabs::VISUALS;
|
tabs current_tab = tabs::VISUALS;
|
||||||
void DrawMenu(bool open_menu) {
|
void DrawMenu(bool open_menu) {
|
||||||
ImGui::SetNextWindowSize(ImVec2(240.000f, 300.000f), ImGuiCond_Once);
|
ImGui::SetNextWindowSize(ImVec2(690.000f, 420.000f), ImGuiCond_Once);
|
||||||
ImGui::Begin("DevourClient", NULL, 2);
|
ImGui::Begin("DevourClient", NULL, 2);
|
||||||
|
|
||||||
#if _DEBUG
|
#if _DEBUG
|
||||||
@@ -385,7 +386,7 @@ void DrawMenu(bool open_menu) {
|
|||||||
|
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if (ImGui::Button("Players", ImVec2(0.000f, 0.000f))) {
|
if (ImGui::Button("Players", ImVec2(0.000f, 0.000f))) {
|
||||||
current_tab = tabs::MISC;
|
current_tab = tabs::PLAYERS;
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ bool open_menu = false;
|
|||||||
typedef void(__stdcall* TDebug_2_Log)(app::Object*, MethodInfo*);
|
typedef void(__stdcall* TDebug_2_Log)(app::Object*, MethodInfo*);
|
||||||
TDebug_2_Log oDebug_2_Log = NULL;
|
TDebug_2_Log oDebug_2_Log = NULL;
|
||||||
void __stdcall hDebug_Log(app::Object* message, MethodInfo* method) {
|
void __stdcall hDebug_Log(app::Object* message, MethodInfo* method) {
|
||||||
std::cout << "[DevourClient] " << ToString(message) << std::endl;
|
std::cout << "[DevourClient]: " << ToString(message) << std::endl;
|
||||||
il2cppi_log_write(ToString(message));
|
il2cppi_log_write(ToString(message));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -49,12 +49,13 @@ void Run()
|
|||||||
else
|
else
|
||||||
std::cout << "Unknown\n\n";
|
std::cout << "Unknown\n\n";
|
||||||
|
|
||||||
std::cout << dye::light_aqua("\tMade with < 3 by patate and Jadis0x.\n");
|
std::cout << dye::light_aqua("\tMade with < 3 by patate and Jadis0x.\n\n");
|
||||||
|
|
||||||
uint64_t steamUserID = app::SteamUser_GetSteamID(nullptr).m_SteamID;
|
uint64_t steamUserID = app::SteamUser_GetSteamID(nullptr).m_SteamID;
|
||||||
std::string steamName = il2cppi_to_string(app::SteamFriends_GetPersonaName(nullptr));
|
std::string steamName = il2cppi_to_string(app::SteamFriends_GetPersonaName(nullptr));
|
||||||
|
|
||||||
std::cout << "[DevourClient]: " << dye::yellow("GitHub: ") << dye::aqua_on_black("https://github.com/ALittlePatate/DevourClient\n");
|
std::cout << "[DevourClient]: " << dye::yellow("GitHub: ") << dye::aqua_on_black("https://github.com/ALittlePatate/DevourClient\n");
|
||||||
|
std::cout << "[DevourClient]: " << "Note: " << dye::light_red("if you payed for this you most likely got scammed.\n\n");
|
||||||
std::cout << "[DevourClient]: Logged in as " << dye::yellow(steamName) << " (" << steamUserID << ")\n\n";
|
std::cout << "[DevourClient]: Logged in as " << dye::yellow(steamName) << " (" << steamUserID << ")\n\n";
|
||||||
|
|
||||||
std::cout << "[DevourClient]: " << dye::aqua("Initializing..\n");
|
std::cout << "[DevourClient]: " << dye::aqua("Initializing..\n");
|
||||||
@@ -84,7 +85,7 @@ void Run()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << "[DevourClient]: " << dye::light_green("Done!:)\n");
|
std::cout << "[DevourClient]: " << dye::light_green("Done!:)\n\n");
|
||||||
|
|
||||||
|
|
||||||
std::string scene = SceneName();
|
std::string scene = SceneName();
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ namespace settings {
|
|||||||
bool steam_name_spoof = false;
|
bool steam_name_spoof = false;
|
||||||
std::string new_name = "patate";
|
std::string new_name = "patate";
|
||||||
bool server_name_spoof = false;
|
bool server_name_spoof = false;
|
||||||
std::string server_name = "Jadis";
|
std::string server_name = "Jadis0x";
|
||||||
bool fly = false;
|
bool fly = false;
|
||||||
bool unlock_all = true;
|
bool unlock_all = true;
|
||||||
bool exp_modifier = false;
|
bool exp_modifier = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user