mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 00:34:07 +00:00
yet more CAutomobile
This commit is contained in:
parent
74fcbc8c0a
commit
a65dd41da7
17 changed files with 201 additions and 23 deletions
|
@ -34,7 +34,7 @@ int CWanted::NumOfHelisRequired()
|
|||
return 2;
|
||||
default:
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
void CWanted::SetWantedLevel(int32 level)
|
||||
|
@ -70,11 +70,17 @@ void CWanted::SetWantedLevel(int32 level)
|
|||
UpdateWantedLevel();
|
||||
}
|
||||
|
||||
void CWanted::SetWantedLevelNoDrop(int32 level)
|
||||
{
|
||||
if (level > m_nWantedLevel)
|
||||
SetWantedLevel(level);
|
||||
}
|
||||
|
||||
void CWanted::ClearQdCrimes()
|
||||
{
|
||||
for (int i = 0; i < 16; i++) {
|
||||
m_sCrimes[i].m_eCrimeType = CRIME_NONE;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
void CWanted::UpdateWantedLevel()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue