feat(Player): Added Flying vehicle

Co-authored-by: LiamD-Flop
This commit is contained in:
Mystro
2022-05-05 23:51:18 +03:00
committed by GitHub
parent 410e0da91e
commit 525b4d6459
8 changed files with 56 additions and 6 deletions

View File

@ -125,7 +125,11 @@ namespace big
components::button("Kick From Vehicle", [] {
toxic::kick_from_vehicle(g_player_service->get_selected()->id());
});
components::button("Flying Vehicle", [] {
toxic::flying_vehicle(g_player_service->get_selected()->id());
});
}
}
}
}
}

View File

@ -11,6 +11,7 @@ namespace big
ImGui::Checkbox("Can Be Targeted", &g->vehicle.is_targetable);
ImGui::Checkbox("God Mode", &g->vehicle.god_mode);
ImGui::Checkbox("Horn Boost", &g->vehicle.horn_boost);
ImGui::Checkbox("Instant Brake", &g->vehicle.instant_brake);
ImGui::Checkbox("Drive On Water", &g->vehicle.drive_on_water);
ImGui::EndGroup();