diff options
author | aap <aap@papnet.eu> | 2020-06-04 21:50:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 21:50:00 +0200 |
commit | 7f0474e9deda96ad1b1bf3592103552411d93a2b (patch) | |
tree | eab0d4b3548fee3c419c00cdc9df6786f874e64c /src/core/re3.cpp | |
parent | Update links to bintray on miami branch (diff) | |
parent | some orig chearts (diff) | |
download | re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar.gz re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar.bz2 re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar.lz re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar.xz re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.tar.zst re3-7f0474e9deda96ad1b1bf3592103552411d93a2b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/re3.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 302f4fc1..18f699b4 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -165,7 +165,9 @@ CustomFrontendOptionsPopulate(void) #endif #ifdef DEBUGMENU -void WeaponCheat(); +void WeaponCheat1(); +void WeaponCheat2(); +void WeaponCheat3(); void HealthCheat(); void VehicleCheat(bool something, int model); void BlowUpCarsCheat(); @@ -397,7 +399,9 @@ DebugMenuPopulate(void) DebugMenuAddVar("Time & Weather", "Wind", (float*)&CWeather::Wind, nil, 0.1f, 0.0f, 1.0f); DebugMenuAddVar("Time & Weather", "Time scale", (float*)&CTimer::GetTimeScale(), nil, 0.1f, 0.0f, 10.0f); - DebugMenuAddCmd("Cheats", "Weapons", WeaponCheat); + DebugMenuAddCmd("Cheats", "Weapon set 1", WeaponCheat1); + DebugMenuAddCmd("Cheats", "Weapon set 2", WeaponCheat2); + DebugMenuAddCmd("Cheats", "Weapon set 3", WeaponCheat3); DebugMenuAddCmd("Cheats", "Money", MoneyCheat); DebugMenuAddCmd("Cheats", "Health", HealthCheat); DebugMenuAddCmd("Cheats", "Wanted level up", WantedLevelUpCheat); |