mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-07 18:03:34 +08:00
Merge pull request #18 from karifeld/master
feat(Self & Spoofing): Cleanup and quality of life
This commit is contained in:
commit
577a9c1bc8
@ -20,12 +20,20 @@ namespace big
|
||||
}QUEUE_JOB_END_CLAUSE
|
||||
}
|
||||
|
||||
ImGui::Checkbox("God Mode", &g.self.godmode);
|
||||
ImGui::Checkbox("Off Radar", &g.self.off_radar);
|
||||
ImGui::Checkbox("Free Cam", &g.self.free_cam);
|
||||
ImGui::Checkbox("No Clip", &g.self.noclip);
|
||||
ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll);
|
||||
ImGui::Checkbox("Super Run", &g.self.super_run);
|
||||
if (ImGui::TreeNode("General"))
|
||||
{
|
||||
ImGui::Checkbox("God Mode", &g.self.godmode);
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("Off Radar", &g.self.off_radar);
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("Free Cam", &g.self.free_cam);
|
||||
|
||||
ImGui::Checkbox("No Clip", &g.self.noclip);
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll);
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("Super Run", &g.self.super_run);
|
||||
}
|
||||
|
||||
if (ImGui::TreeNode("Frame Flags"))
|
||||
{
|
||||
@ -97,4 +105,4 @@ namespace big
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,11 @@ namespace big
|
||||
|
||||
if (ImGui::TreeNode("Username"))
|
||||
{
|
||||
QUEUE_JOB_BEGIN_CLAUSE()
|
||||
{
|
||||
PAD::DISABLE_ALL_CONTROL_ACTIONS(0);
|
||||
}QUEUE_JOB_END_CLAUSE
|
||||
|
||||
ImGui::Checkbox("Spoof Username", &g.spoofing.spoof_username);
|
||||
|
||||
static char name[20];
|
||||
@ -28,6 +33,11 @@ namespace big
|
||||
|
||||
if (ImGui::TreeNode("IP Address"))
|
||||
{
|
||||
QUEUE_JOB_BEGIN_CLAUSE()
|
||||
{
|
||||
PAD::DISABLE_ALL_CONTROL_ACTIONS(0);
|
||||
}QUEUE_JOB_END_CLAUSE
|
||||
|
||||
ImGui::Checkbox("Spoof IP", &g.spoofing.spoof_ip);
|
||||
|
||||
ImGui::Text("IP Address:");
|
||||
@ -38,8 +48,13 @@ namespace big
|
||||
|
||||
if (ImGui::TreeNode("Rockstar ID"))
|
||||
{
|
||||
QUEUE_JOB_BEGIN_CLAUSE()
|
||||
{
|
||||
PAD::DISABLE_ALL_CONTROL_ACTIONS(0);
|
||||
}QUEUE_JOB_END_CLAUSE
|
||||
|
||||
ImGui::Checkbox("Spoof Rockstar ID", &g.spoofing.spoof_rockstar_id);
|
||||
|
||||
|
||||
ImGui::Text("Rockstar ID:");
|
||||
ImGui::InputScalar("##rockstar_id_input", ImGuiDataType_U64, &g.spoofing.rockstar_id);
|
||||
|
||||
@ -49,4 +64,4 @@ namespace big
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user