12 lines
362 B
Plaintext
12 lines
362 B
Plaintext
#define LIFE_SETTINGS(TYPE,SETTING) TYPE(missionConfigFile >> "Life_Settings" >> SETTING)
|
|
/*
|
|
File: initPlayerServer.sqf
|
|
Author:
|
|
|
|
Description:
|
|
Executed only on server when a player joins mission.
|
|
*/
|
|
if (LIFE_SETTINGS(getNumber,"player_deathLog") isEqualTo 0) exitWith {};
|
|
|
|
_this select 0 addMPEventHandler ["MPKilled", {_this call fn_whoDoneIt}];
|