mirror of
https://github.com/halpz/re3.git
synced 2025-05-07 02:53:39 +03:00
implemented collectives in script
This commit is contained in:
parent
ae7cb92437
commit
fc72ff24d0
5 changed files with 980 additions and 13 deletions
|
@ -58,7 +58,7 @@ int32 CTheScripts::StoreVehicleIndex;
|
|||
bool CTheScripts::StoreVehicleWasRandom;
|
||||
CRunningScript *CTheScripts::pIdleScripts;
|
||||
CRunningScript *CTheScripts::pActiveScripts;
|
||||
uint32 CTheScripts::NextFreeCollectiveIndex;
|
||||
int32 CTheScripts::NextFreeCollectiveIndex;
|
||||
int32 CTheScripts::LastRandomPedId;
|
||||
uint16 CTheScripts::NumberOfUsedObjects;
|
||||
bool CTheScripts::bAlreadyRunningAMissionScript;
|
||||
|
@ -1810,8 +1810,8 @@ void CTheScripts::Init()
|
|||
OnAMissionForContactFlag[i] = 0;
|
||||
}
|
||||
for (int i = 0; i < MAX_NUM_COLLECTIVES; i++){
|
||||
CollectiveArray[i].index = -1;
|
||||
CollectiveArray[i].unk_data = 0;
|
||||
CollectiveArray[i].colIndex = -1;
|
||||
CollectiveArray[i].pedIndex = 0;
|
||||
}
|
||||
NextFreeCollectiveIndex = 0;
|
||||
LastRandomPedId = -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue