mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
0.3.9 b568
change gamemode from Survival to Survive enabled Ryan Zombies support by default. added random delay in revenge detonation. added min alive time setting for player revenge options. Default 15 minutes (900 seconds).
This commit is contained in:
parent
443c6e90bc
commit
ee7f7497c0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -27,9 +27,10 @@ params [["_unit",objNull,[objNull]], ["_killer",objNull,[objNull]]];
|
||||
|
||||
_config = 'CfgEpochClient' call EPOCH_returnConfig;
|
||||
_playerDeathScreen = getText(_config >> "playerDeathScreen");
|
||||
_playerRevengeAliveTime = getNumber(_config >> "playerRevengeAliveTime");
|
||||
if (_playerDeathScreen isEqualTo "") then {_playerDeathScreen = "TapOut"};
|
||||
_tapDiag = _playerDeathScreen;
|
||||
_doRevenge = (getNumber(_config >> "playerDisableRevenge") isEqualTo 0);
|
||||
_doRevenge = ((getNumber(_config >> "playerDisableRevenge") isEqualTo 0) && EPOCH_playerAliveTime >= _playerRevengeAliveTime);
|
||||
|
||||
// test ejecting unit from vehicle if dead client side
|
||||
if (vehicle _unit != _unit) then {
|
||||
|
@ -23,14 +23,21 @@
|
||||
params ["_player"];
|
||||
openmap [false,false];
|
||||
closeDialog 2;
|
||||
[_player, Epoch_personalToken] remoteExec ["EPOCH_server_deadPlayerDetonate",2];
|
||||
deleteVehicle player;
|
||||
player setVariable ["doneBoom", true];
|
||||
|
||||
[] spawn{
|
||||
|
||||
// todo: add paricle effect here.
|
||||
|
||||
// random delay of up to 30 seconds,
|
||||
uisleep (random 25) + 5;
|
||||
|
||||
[_player, Epoch_personalToken] remoteExec ["EPOCH_server_deadPlayerDetonate",2];
|
||||
deleteVehicle player;
|
||||
player setVariable ["doneBoom", true];
|
||||
|
||||
while {!alive player} do {
|
||||
//Handle clean up
|
||||
if(player getVariable["doneBoom",false])exitWith{player setVariable ["doneBoom",nil]; uiSleep 5; (findDisplay 46) closeDisplay 0;};
|
||||
uiSleep 0.1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -34,7 +34,7 @@ class CfgEpochClient
|
||||
EPOCH_news[] = {"Word is that Sappers have a new boss.","Dogs will often lure them monsters away.","My dog was blown up. I miss him.."};
|
||||
deathMorphClass[] = {"Epoch_Sapper_F","Epoch_SapperB_F","I_UAV_01_F","Epoch_Cloak_F"};//Random selection of these classes when player morphs after death. Currently available: Epoch_Cloak_F, Epoch_SapperB_F, Epoch_Sapper_F, I_UAV_01_F
|
||||
niteLight[] = {1.88,22};//Set ambient lighting at night: {Brightness of light,Height of light}. Default (Low Ambient): {1.88,22} | Twilight: {7.2,88} | Distant: {12.8,142}
|
||||
ryanZombiesEnabled = false; // disabled by default
|
||||
ryanZombiesEnabled = true; // enabled by default, false to disable
|
||||
antagonistSpawnIndex[] = {
|
||||
{"Epoch_Cloak_F", 1}, // {"type", limit}
|
||||
{"GreatWhite_F", 2},
|
||||
@ -103,6 +103,7 @@ class CfgEpochClient
|
||||
playerDeathScreen = "TapOut";
|
||||
playerKilledScreen = "TapOut2";
|
||||
playerDisableRevenge = 0; // 0 = invoke playerKilledScreen when killed by another player, 1 = disable.
|
||||
playerRevengeAliveTime = 900; // time in seconds player must be alive before Revenge option is available.
|
||||
|
||||
// include configs
|
||||
#include "CfgEpochClient\Altis.hpp"
|
||||
|
@ -1 +1 @@
|
||||
build=566;
|
||||
build=568;
|
||||
|
@ -13,7 +13,7 @@
|
||||
author = "Epoch Mod Team";
|
||||
class Header
|
||||
{
|
||||
gameType = Survival;
|
||||
gameType = Survive;
|
||||
minPlayers = 1;
|
||||
maxPlayers = 100;
|
||||
};
|
||||
|
@ -1 +1 @@
|
||||
build=566;
|
||||
build=568;
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
build=566;
|
||||
build=568;
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
build=566;
|
||||
build=568;
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user