Merge pull request #866 from Ignatz-HeMan/patch-3

fix for addrating
This commit is contained in:
vbawol 2017-09-21 15:48:23 -05:00 committed by GitHub
commit e636f624ec
2 changed files with 7 additions and 3 deletions

View File

@ -71,6 +71,10 @@ if !(alive player && alive _playerObject && !isPlayer _playerObject) then {
// reset blood Pressure to warning level
EPOCH_playerBloodP = 120;
// testing for civilan males
waituntil {local _playerObject};
_playerObject addRating -2000;
};
} else {
deleteVehicle _playerObject;

View File

@ -86,13 +86,13 @@ addMissionEventHandler ["PlayerViewChanged", {if (cameraView isEqualTo "GROUP")
[] execFSM "epoch_code\system\player_login.fsm";
// testing for civilan males
player addRating -2000;
//Start processing right after Loading screen is done and game has started
[] spawn {
waitUntil {!isNull (findDisplay 46) && (!isNil "EPOCH_loadingScreenDone")};
'load' call epoch_favBar_draw;
// testing for civilan males
player addRating -2000;
};