Huge protection improvements and other stuff (#1963)

* feat(protections): add a fuzzer
* feat(protections): improve protections
* feat(spoofing): add warning
* feat(world): force object cleanup
* fix(weapons): fix custom weapon code
* fix(weapons): fix for #1983
This commit is contained in:
maybegreat48
2023-08-19 11:01:08 +00:00
committed by GitHub
parent 62c0c30c1a
commit 4a5dccd547
119 changed files with 15159 additions and 20135 deletions

View File

@ -36,10 +36,20 @@ namespace big
ImGui::SameLine();
components::player_command_button<"closedoors">(g_player_service->get_selected(), {});
components::player_command_button<"breakdoors">(g_player_service->get_selected(), {});
components::player_command_button<"upgradeveh">(g_player_service->get_selected(), {});
ImGui::SameLine();
components::player_command_button<"downgradeveh">(g_player_service->get_selected(), {});
components::player_command_button<"svehjump">(g_player_service->get_selected(), {});
ImGui::SameLine();
components::player_command_button<"svehboost">(g_player_service->get_selected(), {});
components::player_command_button<"sshuntleft">(g_player_service->get_selected(), {});
ImGui::SameLine();
components::player_command_button<"sshuntright">(g_player_service->get_selected(), {});
components::player_command_button<"rcplayer">(g_player_service->get_selected());
ImGui::EndListBox();