mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
40f2c98f0c
[Added] Customizability of units spawned by UAV alert via CfgEpochClient > uavAlertUnitSpawnTemplate. (Default: I_Soldier_EPOCH) [Changed] Great White Sharks will now spawn if player is deep enough in the ocean. [Changed] Objects or Players that have been given "Crypto" variable can be accessed via the dynamic menu (Space Bar) for a "Take Crypto" action. changed zombieRndChance to zombieRngChance and added default entry into CfgEpochClient
17 lines
541 B
Plaintext
17 lines
541 B
Plaintext
/*
|
|
Author: Andrew Gregory - EpochMod.com
|
|
|
|
Contributors: Aaron Clark
|
|
|
|
Description:
|
|
Spawn drone function
|
|
|
|
Licence:
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
Github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_supportCopter.sqf
|
|
*/
|
|
_unitClass = ["CfgEpochClient", "uavAlertUnitSpawnTemplate", "I_Soldier_EPOCH"] call EPOCH_fnc_returnConfigEntryV2;
|
|
[_unitClass, player, true, _this] call EPOCH_unitSpawn;
|