Feat(Debug Misc): Added Options (#883)
This commit is contained in:
parent
03767fcd50
commit
2ce44e8d98
@ -6,7 +6,7 @@ namespace big
|
|||||||
{
|
{
|
||||||
if (ImGui::BeginTabItem("Locals"))
|
if (ImGui::BeginTabItem("Locals"))
|
||||||
{
|
{
|
||||||
|
|
||||||
ImGui::EndTabItem();
|
ImGui::EndTabItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,25 @@ namespace big
|
|||||||
STATS::STAT_SET_BOOL(RAGE_JOAAT("mpply_was_i_bad_sport"), FALSE, TRUE);
|
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();
|
ImGui::EndTabItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user