Set Rating to -2001

This commit is contained in:
He-Man 2017-10-07 21:23:54 +02:00
parent 2fe8f08adf
commit 14c433581b
2 changed files with 5 additions and 3 deletions

View File

@ -62,6 +62,9 @@ if !(alive player && alive _playerObject && !isPlayer _playerObject) then {
if !(isNil "_playerBloodPKey") then {_playerBloodPKeyFinal = _playerBloodPKey};
missionNamespace setVariable [_playerBloodPKeyFinal, 120];
// Wait until _playerObject is local before adding Rating and EH's
waituntil {local _playerObject};
// restart masterloop
[] spawn EPOCH_masterLoop;
[5, 100] call EPOCH_niteLight;
@ -76,8 +79,7 @@ if !(alive player && alive _playerObject && !isPlayer _playerObject) then {
// testing for civilan males
waituntil {local _playerObject};
_playerObject addRating -2000;
_playerObject addRating -2001;
};
} else {
deleteVehicle _playerObject;

View File

@ -6,7 +6,7 @@ waitUntil {!isNull (findDisplay 46) && (!isNil "EPOCH_loadingScreenDone")};
'load' spawn epoch_favBar_draw;
// set player rating
player addRating -2000;
player addRating -2001;
// force update within 15 seconds
EPOCH_forceUpdate = false;