mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 19:24:09 +00:00
seagulls, ships
This commit is contained in:
parent
e4649b41e1
commit
895580c724
3 changed files with 373 additions and 71 deletions
|
@ -35,6 +35,7 @@
|
|||
#include "Streaming.h"
|
||||
#include "PathFind.h"
|
||||
#include "Wanted.h"
|
||||
#include "WaterLevel.h"
|
||||
#include "General.h"
|
||||
|
||||
CPad Pads[MAX_PADS];
|
||||
|
@ -306,6 +307,21 @@ void PinkCarsCheat()
|
|||
gbBlackCars = false;
|
||||
gbPinkCars = true;
|
||||
}
|
||||
|
||||
void NoSeaBedCheat(void)
|
||||
{
|
||||
CHud::SetHelpMessage(TheText.Get("CHEAT1"), true);
|
||||
CWaterLevel::m_bRenderSeaBed = !CWaterLevel::m_bRenderSeaBed;
|
||||
}
|
||||
|
||||
void RenderWaterLayersCheat(void)
|
||||
{
|
||||
CHud::SetHelpMessage(TheText.Get("CHEAT1"), true);
|
||||
if ( ++CWaterLevel::m_nRenderWaterLayers > 5 )
|
||||
CWaterLevel::m_nRenderWaterLayers = 0;
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef KANGAROO_CHEAT
|
||||
|
@ -1051,6 +1067,16 @@ void CPad::AddToPCCheatString(char c)
|
|||
if (!_CHEATCMP("ODODRETSAMOTTNAWI"))
|
||||
AltDodoCheat();
|
||||
#endif
|
||||
|
||||
#if !defined(PC_WATER) && defined(WATER_CHEATS)
|
||||
// SEABEDCHEAT
|
||||
if (!_CHEATCMP("TAEHCDEBAESON"))
|
||||
NoSeaBedCheat();
|
||||
|
||||
// WATERLAYERSCHEAT
|
||||
if (!_CHEATCMP("TAEHCSREYALRETAW"))
|
||||
RenderWaterLayersCheat();
|
||||
#endif
|
||||
|
||||
#undef _CHEATCMP
|
||||
}
|
||||
|
|
|
@ -205,7 +205,8 @@ enum Config {
|
|||
#define RELOADABLES // some debug menu options to reload TXD files
|
||||
#endif
|
||||
|
||||
//#define PC_WATER
|
||||
#define PC_WATER
|
||||
#define WATER_CHEATS
|
||||
|
||||
// Particle
|
||||
#define PC_PARTICLE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue