Feat(Debug Misc): Added Options (#883)

This commit is contained in:
TheGreenBandit 2023-01-23 05:56:21 -05:00 committed by GitHub
parent 03767fcd50
commit 2ce44e8d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View File

@ -6,7 +6,7 @@ namespace big
{
if (ImGui::BeginTabItem("Locals"))
{
ImGui::EndTabItem();
}
}

View File

@ -31,6 +31,25 @@ namespace big
STATS::STAT_SET_BOOL(RAGE_JOAAT("mpply_was_i_bad_sport"), FALSE, TRUE);
});
if (components::button("Load MP Map"))
DLC::ON_ENTER_MP();
ImGui::SameLine();
if (components::button("Load SP Map"))
DLC::ON_ENTER_SP();
if (components::button("Skip Cutscene"))
CUTSCENE::STOP_CUTSCENE_IMMEDIATELY();
if (components::button("Refresh Interior"))
{
Interior interior = INTERIOR::GET_INTERIOR_AT_COORDS(self::pos.x, self::pos.y, self::pos.z);
INTERIOR::REFRESH_INTERIOR(interior);
}
if (ImGui::IsItemHovered())
ImGui::SetTooltip("You Will Have To Refresh Again When Exiting Interior.\n SPAMMING WILL CRASH GAME");
ImGui::EndTabItem();
}
}