settings updated

This commit is contained in:
Jadis0x
2024-05-16 22:39:24 +03:00
parent edc1061b5d
commit 78ec72e4f2
4 changed files with 11 additions and 9 deletions

View File

@@ -299,6 +299,9 @@ void DrawMiscTab() {
ImGui::Checkbox("Walk in lobby", &settings::walk_in_lobby);
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);
@@ -309,9 +312,7 @@ void DrawMiscTab() {
ImGui::Checkbox("Azazel Speed", &settings::freeze_azazel);
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
ImGui::Spacing();
@@ -354,7 +355,7 @@ void DrawPlayersTab() {
tabs current_tab = tabs::VISUALS;
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);
#if _DEBUG
@@ -385,7 +386,7 @@ void DrawMenu(bool open_menu) {
ImGui::SameLine();
if (ImGui::Button("Players", ImVec2(0.000f, 0.000f))) {
current_tab = tabs::MISC;
current_tab = tabs::PLAYERS;
}
ImGui::Separator();

View File

@@ -45,7 +45,7 @@ bool open_menu = false;
typedef void(__stdcall* TDebug_2_Log)(app::Object*, MethodInfo*);
TDebug_2_Log oDebug_2_Log = NULL;
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));
}

View File

@@ -49,12 +49,13 @@ void Run()
else
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;
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]: " << "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]: " << dye::aqua("Initializing..\n");
@@ -84,7 +85,7 @@ void Run()
return;
}
std::cout << "[DevourClient]: " << dye::light_green("Done!:)\n");
std::cout << "[DevourClient]: " << dye::light_green("Done!:)\n\n");
std::string scene = SceneName();

View File

@@ -33,7 +33,7 @@ namespace settings {
bool steam_name_spoof = false;
std::string new_name = "patate";
bool server_name_spoof = false;
std::string server_name = "Jadis";
std::string server_name = "Jadis0x";
bool fly = false;
bool unlock_all = true;
bool exp_modifier = false;