not helping...

This commit is contained in:
Eero af Heurlin 2016-07-24 14:27:00 +03:00
parent 505f412e42
commit 2daada7110
2 changed files with 9 additions and 6 deletions

View File

@ -4,8 +4,15 @@ diag_log format["initPlayer called, _this: %1", _this];
_target = _this select 0;
_playerno = _this select 1;
_target addMPEventHandler ["mpkilled", {Null = _this, _playerno execVM "playerkilled.sqf";}];
_target addMPEventHandler ["respawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
player addEventHandler ["Killed", {Null = _this, _playerno execVM "playerkilled.sqf";}];
player addMPEventHandler ["MPKilled", {Null = _this, _playerno execVM "playerkilled.sqf";}];
player addEventHandler ["Respawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
player addMPEventHandler ["MPRespawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
_target addEventHandler ["Killed", {Null = _this, _playerno execVM "playerkilled.sqf";}];
_target addMPEventHandler ["MPKilled", {Null = _this, _playerno execVM "playerkilled.sqf";}];
_target addEventHandler ["Respawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
_target addMPEventHandler ["MPRespawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
[_target, _playerno] execVM "playerspawn.sqf";

View File

@ -2,10 +2,6 @@ diag_log format["playerspawn called, _this: %1", _this];
_target = _this select 0;
_playerno = _this select 1;
playersArray set [_playerno, _target];
(playersArray select _playerno) addEventHandler ["killed", {Null = _this, _playerno execVM "playerkilled.sqf";}];
(playersArray select _playerno) addMPEventHandler ["mpkilled", {Null = _this, _playerno execVM "playerkilled.sqf";}];
(playersArray select _playerno) addEventHandler ["respawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
(playersArray select _playerno) addMPEventHandler ["mprespawn", {Null = unit, _playerno execVM "playerspawn.sqf";}];
ferryingArray set [_playerno, false];
landingCompleteArray set [_playerno, false];