Merge pull request #18 from karifeld/master

feat(Self & Spoofing): Cleanup and quality of life
This commit is contained in:
Yimura 2021-12-26 23:06:06 +01:00 committed by GitHub
commit 577a9c1bc8
2 changed files with 32 additions and 9 deletions

View File

@ -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();
}
}
}
}

View File

@ -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();
}
}
}
}