mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
0.4 b605 gamemode
added H_105_EPOCH and halloween masks to loot table| changed version check to check community pbo
This commit is contained in:
parent
e6585ecc16
commit
35cc154792
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.
@ -286,7 +286,7 @@ class FSM
|
||||
"_epoch_assets3 = getText(configFile >> ""Epoch"" >> ""Version"" >> ""A3_epoch_assets_3"");" \n
|
||||
"_epoch_config = getText(configFile >> ""Epoch"" >> ""Version"" >> ""A3_epoch_config"");" \n
|
||||
"_epoch_language = getText(configFile >> ""Epoch"" >> ""Version"" >> ""A3_epoch_language"");" \n
|
||||
"_epoch_underground = getText(configFile >> ""Epoch"" >> ""Version"" >> ""Underground_Epoch"");" \n
|
||||
"_epoch_community = getText(configFile >> ""Epoch"" >> ""Version"" >> ""a3_epoch_community"");" \n
|
||||
"_epoch_vehicles = getText(configFile >> ""Epoch"" >> ""Version"" >> ""A3_epoch_vehicles"");" \n
|
||||
"_epoch_weapons = getText(configFile >> ""Epoch"" >> ""Version"" >> ""a3_epoch_weapons"");" \n
|
||||
"" \n
|
||||
@ -298,7 +298,7 @@ class FSM
|
||||
"_my_epoch_assets3 = getText(configFile >> ""CfgPatches"" >> ""A3_epoch_assets_3"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_config = getText(configFile >> ""CfgPatches"" >> ""A3_epoch_config"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_language = getText(configFile >> ""CfgPatches"" >> ""A3_epoch_language"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_underground = getText(configFile >> ""CfgPatches"" >> ""Underground_Epoch"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_community = getText(configFile >> ""CfgPatches"" >> ""a3_epoch_community"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_vehicles = getText(configFile >> ""CfgPatches"" >> ""A3_epoch_vehicles"" >> ""epochVersion"");" \n
|
||||
"_my_epoch_weapons = getText(configFile >> ""CfgPatches"" >> ""a3_epoch_weapons"" >> ""epochVersion"");" \n
|
||||
"" \n
|
||||
@ -320,7 +320,7 @@ class FSM
|
||||
"_my_epoch_assets3 != _epoch_assets3 ||" \n
|
||||
"_my_epoch_config != _epoch_config ||" \n
|
||||
"_my_epoch_language != _epoch_language ||" \n
|
||||
"_my_epoch_underground != _epoch_underground ||" \n
|
||||
"_my_epoch_community != _epoch_community ||" \n
|
||||
"_my_epoch_vehicles != _epoch_vehicles ||" \n
|
||||
"_my_epoch_weapons != _epoch_weapons"/*%FSM</CONDITION""">*/;
|
||||
action=/*%FSM<ACTION""">*/""/*%FSM</ACTION""">*/;
|
||||
@ -1433,4 +1433,4 @@ class FSM
|
||||
"Reject_without_B",
|
||||
};
|
||||
};
|
||||
/*%FSM</COMPILE>*/
|
||||
/*%FSM</COMPILE>*/
|
||||
|
File diff suppressed because it is too large
Load Diff
1370
Sources/epoch_config/Configs/CfgBaseBuilding.json
Normal file
1370
Sources/epoch_config/Configs/CfgBaseBuilding.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
42818
Sources/epoch_config/Configs/CfgBuildingLootPos.json
Normal file
42818
Sources/epoch_config/Configs/CfgBuildingLootPos.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,292 @@
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {"Raimonds Virtoss","Andrew Gregory"};
|
||||
@description = "Custom Epoch Client Only functions";
|
||||
@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_config/Configs/CfgClientFunctions.hpp";
|
||||
*/
|
||||
class CfgClientFunctions
|
||||
{
|
||||
version = 1;
|
||||
class A3E
|
||||
{
|
||||
tag = "EPOCH";
|
||||
file = "epoch_code\compile";
|
||||
class generic
|
||||
{
|
||||
file = "epoch_code\compile";
|
||||
class localCleanup {};
|
||||
class unitSpawnIncrease {};
|
||||
class unitSpawnDecrease {};
|
||||
class QuickTakeAll {};
|
||||
class QuickTakeLoad {};
|
||||
class effectCrypto {};
|
||||
class handleServerMessage {};
|
||||
class updateLoadingScreen {};
|
||||
class EnterBuilding {};
|
||||
class lootTrash {};
|
||||
class debugMonitor {};
|
||||
class interact {};
|
||||
class chopWood {};
|
||||
class fish {};
|
||||
class mineRocks {};
|
||||
class UnisexCheck {};
|
||||
class PutHandler {};
|
||||
class niteLight {};
|
||||
class LootIT {};
|
||||
class supportCopter {};
|
||||
class consumeItem {};
|
||||
class unitSpawn {};
|
||||
class onEachFrame {};
|
||||
class callSapperMigration {};
|
||||
class zombieSpawn {};
|
||||
class makeMarker {};
|
||||
class removeMarker {};
|
||||
};
|
||||
class building
|
||||
{
|
||||
class maintainIT {};
|
||||
class lockCheck {};
|
||||
class countdown {};
|
||||
class fnc_SelectTargetBuild {};
|
||||
class isBuildAllowed {};
|
||||
class simulSwap {};
|
||||
class staticMove {};
|
||||
class upgradeBUILD {};
|
||||
class removeBUILD {};
|
||||
class changeWallState {};
|
||||
class checkBuild {};
|
||||
};
|
||||
class traders
|
||||
{
|
||||
class startInteract {};
|
||||
class startInteractNPC {};
|
||||
class npcTraderAdd {};
|
||||
class npcTraderAdd2 {};
|
||||
class npcTraderAdd3 {};
|
||||
class startNPCTraderMenu {};
|
||||
class NPCTraderMenuFilter {};
|
||||
class startNpcTrade {};
|
||||
class tradeFilter {};
|
||||
class takeCrypto {};
|
||||
class startBankTransfer {};
|
||||
};
|
||||
class interface_event_handlers
|
||||
{
|
||||
class KeyDown {};
|
||||
class KeyUp {};
|
||||
class onChar {};
|
||||
};
|
||||
class event_handlers
|
||||
{
|
||||
class getInMan {};
|
||||
class getOutMan {};
|
||||
};
|
||||
class setup
|
||||
{
|
||||
class masterLoop {};
|
||||
class clientInit {};
|
||||
class clientRespawn {};
|
||||
class clientRevive {};
|
||||
class client_rejectPlayer {};
|
||||
class clientKeyMap {};
|
||||
};
|
||||
class p2p_trading
|
||||
{
|
||||
class startTRADEREQ {};
|
||||
class startTrade {};
|
||||
class tradeRequest {};
|
||||
class TradeLoop {};
|
||||
class makep2pTrade {};
|
||||
};
|
||||
class functions
|
||||
{
|
||||
class worldObjectType {};
|
||||
class returnConfig {};
|
||||
class colorRange {};
|
||||
class convertTemp {};
|
||||
class fnc_playerDeath {};
|
||||
class fnc_playerFired {};
|
||||
class fnc_isInsideBuilding {};
|
||||
class fnc_Weather {};
|
||||
class fnc_findSafePos {};
|
||||
class fnc_addItemOverflow {};
|
||||
class pushCustomVar {};
|
||||
class itemData {};
|
||||
class itemPicture {};
|
||||
class itemDisplayName {};
|
||||
class SortArrayByDistance {};
|
||||
class fnc_findRandomPosBehind {};
|
||||
class fnc_stringLeft {};
|
||||
class fnc_findSapperStalkLocation {};
|
||||
class fnc_dirToFuzzy {};
|
||||
class fnc_cursorTarget {};
|
||||
class fnc_triggerAntagonist {};
|
||||
class fnc_playerDeathDetonate {};
|
||||
class fnc_playerDeathMorph {};
|
||||
class fnc_playerSetVariable {};
|
||||
class fnc_playerAttachToAntagonist {};
|
||||
class fnc_dynamicFSM {};
|
||||
class fnc_vectorDivide {};
|
||||
class giveAttributes {};
|
||||
class fnc_spawnEffects {};
|
||||
class fnc_arrayStringToBool {};
|
||||
};
|
||||
class environment
|
||||
{
|
||||
class client_earthQuake {};
|
||||
class client_loadAnimalBrain {};
|
||||
class client_bitePlayer {};
|
||||
};
|
||||
class vehicles
|
||||
{
|
||||
class client_repairVehicle {};
|
||||
class client_lockVehicle {};
|
||||
class client_fillVehicle {};
|
||||
class client_gearVehicle {};
|
||||
};
|
||||
class missions
|
||||
{
|
||||
class mission_accept {};
|
||||
class mission_cage_sapper {};
|
||||
class mission_returnObj {};
|
||||
};
|
||||
class inventory
|
||||
{
|
||||
class selectInventoryItem {};
|
||||
class itemInteractClick {};
|
||||
class itemInteractDblClick {};
|
||||
class uniformArmorCalc {};
|
||||
class gearArmorCalc {};
|
||||
class factorArmor {};
|
||||
class maxArmorInit {};
|
||||
class initUI {};
|
||||
class refeshUI {};
|
||||
};
|
||||
class messaging
|
||||
{
|
||||
file = "epoch_code\gui\scripts\messaging";
|
||||
class message {};
|
||||
class message_old1 {};
|
||||
class message_old2 {};
|
||||
};
|
||||
class looting
|
||||
{
|
||||
class spawnLoot {};
|
||||
};
|
||||
class gui
|
||||
{
|
||||
file = "epoch_code\gui\scripts";
|
||||
class onPause {};
|
||||
class showStats {};
|
||||
class 3DctrlPitchYaw {};
|
||||
class 3DctrlSpin {};
|
||||
class 3DctrlYaw {};
|
||||
class InterruptConfig {};
|
||||
class InterruptConfigActions {};
|
||||
class getIDC {};
|
||||
class guiObjHP {};
|
||||
class secureStorageHandler {};
|
||||
class genderSelection {};
|
||||
class getColorScheme {};
|
||||
class dragControl {};
|
||||
};
|
||||
class config
|
||||
{
|
||||
file = "epoch_code\gui\scripts\config";
|
||||
class config_keymap {};
|
||||
};
|
||||
class dynamenu
|
||||
{
|
||||
file = "epoch_code\gui\scripts\dynamenu";
|
||||
class dynamicMenu {};
|
||||
class dynamicMenuPopulate {};
|
||||
class dynamicMenuCleanup {};
|
||||
};
|
||||
class dynamicHUD
|
||||
{
|
||||
file = "epoch_code\gui\scripts\dynamicHUD";
|
||||
class dynamicHUD_adjust {};
|
||||
class dynamicHUD_loadSave {};
|
||||
class dynamicHUD_start {};
|
||||
class getHUDCtrl {};
|
||||
};
|
||||
class gui_craft
|
||||
{
|
||||
file = "epoch_code\gui\scripts\craftingv2";
|
||||
class crafting_animate {};
|
||||
class crafting_ctrl_collector {};
|
||||
class crafting_dev_toggle {};
|
||||
class crafting_getConfig {};
|
||||
class crafting_checkGear {};
|
||||
class crafting_checkNearby {};
|
||||
class crafting_checkResources {};
|
||||
class crafting_craft {};
|
||||
class crafting_progress {};
|
||||
class crafting_load {};
|
||||
class crafting_unload {};
|
||||
class crafting_LB_click {};
|
||||
class crafting_LB_defaults {};
|
||||
class crafting_LB_doubleClick {};
|
||||
class crafting_colorScheme {};
|
||||
};
|
||||
class group
|
||||
{
|
||||
file = "epoch_code\gui\scripts\group";
|
||||
class Group_invitePlayer {};
|
||||
class Group_BtnMod {};
|
||||
class Group_BtnInvite {};
|
||||
class Group_onLoad {};
|
||||
class Group_List {};
|
||||
class Group_Combo {};
|
||||
class Group_BtnLeave {};
|
||||
class Group_BtnKick {};
|
||||
class cGroup_groupText {};
|
||||
class cGroup_onLoad {};
|
||||
class cGroup_BtnCreate {};
|
||||
class iGroup_acceptInvite {};
|
||||
class iGroup_onLoad {};
|
||||
class iGroup_refresh {};
|
||||
class Group_update {};
|
||||
};
|
||||
class gui_inventory
|
||||
{
|
||||
file = "epoch_code\gui\scripts\inventory";
|
||||
class Inventory_Group {};
|
||||
class Inventory_iGroup {};
|
||||
};
|
||||
class gui_missions
|
||||
{
|
||||
file = "epoch_code\gui\scripts\missions";
|
||||
class mission_refresh {};
|
||||
class mission_description {};
|
||||
};
|
||||
class gui_postProcessing
|
||||
{
|
||||
file = "epoch_code\gui\scripts\post_process";
|
||||
class postprocessCreate {};
|
||||
class postprocessAdjust {};
|
||||
class postprocessDestroy {};
|
||||
class setDrunk {};
|
||||
class setRadiation {};
|
||||
};
|
||||
class worldToScreen
|
||||
{
|
||||
file = "epoch_code\gui\scripts\worldToScreen";
|
||||
class gui3DCooldown {};
|
||||
class gui3DCooldownEH {};
|
||||
class gui3DWorldPos {};
|
||||
class gui3DWorldPosEH {};
|
||||
class gui3DModelPos {};
|
||||
class gui3DModelPosEH {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/*[[[end]]]*/
|
||||
|
||||
|
||||
class CfgClientFunctions
|
||||
{
|
||||
version = 1;
|
||||
|
260
Sources/epoch_config/Configs/CfgClientFunctions.json
Normal file
260
Sources/epoch_config/Configs/CfgClientFunctions.json
Normal file
@ -0,0 +1,260 @@
|
||||
{
|
||||
"_header": {
|
||||
"@author": "Aaron Clark - https://EpochMod.com",
|
||||
"@contributors": ["Raimonds Virtoss","Andrew Gregory"],
|
||||
"@description": "Custom Epoch Client Only functions",
|
||||
"@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/{filename}"
|
||||
},
|
||||
"CfgClientFunctions": {
|
||||
"version": 1,
|
||||
"A3E": {
|
||||
"tag": "EPOCH",
|
||||
"file": "epoch_code\\compile",
|
||||
"generic": {
|
||||
"file": "epoch_code\\compile",
|
||||
"localCleanup": {},
|
||||
"unitSpawnIncrease": {},
|
||||
"unitSpawnDecrease": {},
|
||||
"QuickTakeAll": {},
|
||||
"QuickTakeLoad": {},
|
||||
"effectCrypto": {},
|
||||
"handleServerMessage": {},
|
||||
"updateLoadingScreen": {},
|
||||
"EnterBuilding": {},
|
||||
"lootTrash": {},
|
||||
"debugMonitor": {},
|
||||
"interact": {},
|
||||
"chopWood": {},
|
||||
"fish": {},
|
||||
"mineRocks": {},
|
||||
"UnisexCheck": {},
|
||||
"PutHandler": {},
|
||||
"niteLight": {},
|
||||
"LootIT": {},
|
||||
"supportCopter": {},
|
||||
"consumeItem": {},
|
||||
"unitSpawn": {},
|
||||
"onEachFrame": {},
|
||||
"callSapperMigration": {},
|
||||
"zombieSpawn": {},
|
||||
"makeMarker": {},
|
||||
"removeMarker": {}
|
||||
},
|
||||
"building": {
|
||||
"maintainIT": {},
|
||||
"lockCheck": {},
|
||||
"countdown": {},
|
||||
"fnc_SelectTargetBuild": {},
|
||||
"isBuildAllowed": {},
|
||||
"simulSwap": {},
|
||||
"staticMove": {},
|
||||
"upgradeBUILD": {},
|
||||
"removeBUILD": {},
|
||||
"changeWallState": {},
|
||||
"checkBuild": {}
|
||||
},
|
||||
"traders": {
|
||||
"startInteract": {},
|
||||
"startInteractNPC": {},
|
||||
"npcTraderAdd": {},
|
||||
"npcTraderAdd2": {},
|
||||
"npcTraderAdd3": {},
|
||||
"startNPCTraderMenu": {},
|
||||
"NPCTraderMenuFilter": {},
|
||||
"startNpcTrade": {},
|
||||
"tradeFilter": {},
|
||||
"takeCrypto": {},
|
||||
"startBankTransfer": {}
|
||||
},
|
||||
"interface_event_handlers": {
|
||||
"KeyDown": {},
|
||||
"KeyUp": {},
|
||||
"onChar": {}
|
||||
},
|
||||
"event_handlers": {
|
||||
"getInMan": {},
|
||||
"getOutMan": {}
|
||||
},
|
||||
"setup": {
|
||||
"masterLoop": {},
|
||||
"clientInit": {},
|
||||
"clientRespawn": {},
|
||||
"clientRevive": {},
|
||||
"client_rejectPlayer": {},
|
||||
"clientKeyMap": {}
|
||||
},
|
||||
"p2p_trading": {
|
||||
"startTRADEREQ": {},
|
||||
"startTrade": {},
|
||||
"tradeRequest": {},
|
||||
"TradeLoop": {},
|
||||
"makep2pTrade": {}
|
||||
},
|
||||
"functions": {
|
||||
"worldObjectType": {},
|
||||
"returnConfig": {},
|
||||
"colorRange": {},
|
||||
"convertTemp": {},
|
||||
"fnc_playerDeath": {},
|
||||
"fnc_playerFired": {},
|
||||
"fnc_isInsideBuilding": {},
|
||||
"fnc_Weather": {},
|
||||
"fnc_findSafePos": {},
|
||||
"fnc_addItemOverflow": {},
|
||||
"pushCustomVar": {},
|
||||
"itemData": {},
|
||||
"itemPicture": {},
|
||||
"itemDisplayName": {},
|
||||
"SortArrayByDistance": {},
|
||||
"fnc_findRandomPosBehind": {},
|
||||
"fnc_stringLeft": {},
|
||||
"fnc_findSapperStalkLocation": {},
|
||||
"fnc_dirToFuzzy": {},
|
||||
"fnc_cursorTarget": {},
|
||||
"fnc_triggerAntagonist": {},
|
||||
"fnc_playerDeathDetonate": {},
|
||||
"fnc_playerDeathMorph": {},
|
||||
"fnc_playerSetVariable": {},
|
||||
"fnc_playerAttachToAntagonist": {},
|
||||
"fnc_dynamicFSM": {},
|
||||
"fnc_vectorDivide": {},
|
||||
"giveAttributes": {},
|
||||
"fnc_spawnEffects": {},
|
||||
"fnc_arrayStringToBool": {}
|
||||
},
|
||||
"environment": {
|
||||
"client_earthQuake": {},
|
||||
"client_loadAnimalBrain": {},
|
||||
"client_bitePlayer": {}
|
||||
},
|
||||
"vehicles": {
|
||||
"client_repairVehicle": {},
|
||||
"client_lockVehicle": {},
|
||||
"client_fillVehicle": {},
|
||||
"client_gearVehicle": {}
|
||||
},
|
||||
"missions": {
|
||||
"mission_accept": {},
|
||||
"mission_cage_sapper": {},
|
||||
"mission_returnObj": {}
|
||||
},
|
||||
"inventory": {
|
||||
"selectInventoryItem": {},
|
||||
"itemInteractClick": {},
|
||||
"itemInteractDblClick": {},
|
||||
"uniformArmorCalc": {},
|
||||
"gearArmorCalc": {},
|
||||
"factorArmor": {},
|
||||
"maxArmorInit": {},
|
||||
"initUI": {},
|
||||
"refeshUI": {}
|
||||
},
|
||||
"messaging": {
|
||||
"file": "epoch_code\\gui\\scripts\\messaging",
|
||||
"message": {},
|
||||
"message_old1": {},
|
||||
"message_old2": {}
|
||||
},
|
||||
"looting": {
|
||||
"spawnLoot": {}
|
||||
},
|
||||
"gui": {
|
||||
"file": "epoch_code\\gui\\scripts",
|
||||
"onPause": {},
|
||||
"showStats": {},
|
||||
"3DctrlPitchYaw": {},
|
||||
"3DctrlSpin": {},
|
||||
"3DctrlYaw": {},
|
||||
"InterruptConfig": {},
|
||||
"InterruptConfigActions": {},
|
||||
"getIDC": {},
|
||||
"guiObjHP": {},
|
||||
"secureStorageHandler": {},
|
||||
"genderSelection": {},
|
||||
"getColorScheme": {},
|
||||
"dragControl": {}
|
||||
},
|
||||
"config": {
|
||||
"file": "epoch_code\\gui\\scripts\\config",
|
||||
"config_keymap": {}
|
||||
},
|
||||
"dynamenu": {
|
||||
"file": "epoch_code\\gui\\scripts\\dynamenu",
|
||||
"dynamicMenu": {},
|
||||
"dynamicMenuPopulate": {},
|
||||
"dynamicMenuCleanup": {}
|
||||
},
|
||||
"dynamicHUD": {
|
||||
"file": "epoch_code\\gui\\scripts\\dynamicHUD",
|
||||
"dynamicHUD_adjust": {},
|
||||
"dynamicHUD_loadSave": {},
|
||||
"dynamicHUD_start": {},
|
||||
"getHUDCtrl": {}
|
||||
},
|
||||
"gui_craft": {
|
||||
"file": "epoch_code\\gui\\scripts\\craftingv2",
|
||||
"crafting_animate": {},
|
||||
"crafting_ctrl_collector": {},
|
||||
"crafting_dev_toggle": {},
|
||||
"crafting_getConfig": {},
|
||||
"crafting_checkGear": {},
|
||||
"crafting_checkNearby": {},
|
||||
"crafting_checkResources": {},
|
||||
"crafting_craft": {},
|
||||
"crafting_progress": {},
|
||||
"crafting_load": {},
|
||||
"crafting_unload": {},
|
||||
"crafting_LB_click": {},
|
||||
"crafting_LB_defaults": {},
|
||||
"crafting_LB_doubleClick": {},
|
||||
"crafting_colorScheme": {}
|
||||
},
|
||||
"group": {
|
||||
"file": "epoch_code\\gui\\scripts\\group",
|
||||
"Group_invitePlayer": {},
|
||||
"Group_BtnMod": {},
|
||||
"Group_BtnInvite": {},
|
||||
"Group_onLoad": {},
|
||||
"Group_List": {},
|
||||
"Group_Combo": {},
|
||||
"Group_BtnLeave": {},
|
||||
"Group_BtnKick": {},
|
||||
"cGroup_groupText": {},
|
||||
"cGroup_onLoad": {},
|
||||
"cGroup_BtnCreate": {},
|
||||
"iGroup_acceptInvite": {},
|
||||
"iGroup_onLoad": {},
|
||||
"iGroup_refresh": {},
|
||||
"Group_update": {}
|
||||
},
|
||||
"gui_inventory": {
|
||||
"file": "epoch_code\\gui\\scripts\\inventory",
|
||||
"Inventory_Group": {},
|
||||
"Inventory_iGroup": {}
|
||||
},
|
||||
"gui_missions": {
|
||||
"file": "epoch_code\\gui\\scripts\\missions",
|
||||
"mission_refresh": {},
|
||||
"mission_description": {}
|
||||
},
|
||||
"gui_postProcessing": {
|
||||
"file": "epoch_code\\gui\\scripts\\post_process",
|
||||
"postprocessCreate": {},
|
||||
"postprocessAdjust": {},
|
||||
"postprocessDestroy": {},
|
||||
"setDrunk": {},
|
||||
"setRadiation": {}
|
||||
},
|
||||
"worldToScreen": {
|
||||
"file": "epoch_code\\gui\\scripts\\worldToScreen",
|
||||
"gui3DCooldown": {},
|
||||
"gui3DCooldownEH": {},
|
||||
"gui3DWorldPos": {},
|
||||
"gui3DWorldPosEH": {},
|
||||
"gui3DModelPos": {},
|
||||
"gui3DModelPosEH": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -33,31 +33,38 @@ Obtaining Controls:
|
||||
[_ConfigName, _index] call epoch_getHUDCtrl;
|
||||
["myHUDname", 3] call epoch_getHUDCtrl;
|
||||
*/
|
||||
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Raimonds Virtoss - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
@description = "Epoch dynamic player HUD config";
|
||||
@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_config/Configs/CfgDynamicHUD.hpp";
|
||||
*/
|
||||
class rmx_dynamicHUD
|
||||
{
|
||||
class topRight //ConfigName matters to be able to use function!
|
||||
{
|
||||
classname = "RscPicture";
|
||||
defaultPos = 2;
|
||||
defaultPopulate = 1;
|
||||
arraySize = 10;
|
||||
width = 4;
|
||||
height = 4;
|
||||
offSetX = 0;
|
||||
offSetY = 1.3;
|
||||
angle[] = {-5, 0.5, 0.5, 0.5}; // [start degrees, x, y, tilt]
|
||||
scale[] = {1, 0.05}; // [start scale, size reduction]
|
||||
};
|
||||
class botcenter
|
||||
{
|
||||
classname = "RscPicture";
|
||||
defaultPos = 7;
|
||||
defaultPopulate = 4;
|
||||
arraySize = 9;
|
||||
width = 5;
|
||||
height = 5;
|
||||
//angle[] = {25, 0.5, 0.5};
|
||||
};
|
||||
|
||||
class topRight
|
||||
{
|
||||
classname = "RscPicture";
|
||||
defaultPos = 2;
|
||||
defaultPopulate = 1;
|
||||
arraySize = 10;
|
||||
width = 4;
|
||||
height = 4;
|
||||
offSetX = 0;
|
||||
offSetY = 1.3;
|
||||
angle[] = {-5,0.5,0.5,0.5};
|
||||
scale[] = {1,0.05};
|
||||
};
|
||||
class botcenter
|
||||
{
|
||||
classname = "RscPicture";
|
||||
defaultPos = 7;
|
||||
defaultPopulate = 4;
|
||||
arraySize = 9;
|
||||
width = 5;
|
||||
height = 5;
|
||||
};
|
||||
};
|
||||
|
||||
/*[[[end]]]*/
|
||||
|
39
Sources/epoch_config/Configs/CfgDynamicHUD.json
Normal file
39
Sources/epoch_config/Configs/CfgDynamicHUD.json
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"_header": {
|
||||
"@author": "Raimonds Virtoss - https://EpochMod.com",
|
||||
"@contributors": [],
|
||||
"@description": "Epoch dynamic player HUD config",
|
||||
"@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/{filename}"
|
||||
},
|
||||
"rmx_dynamicHUD": {
|
||||
"topRight": {
|
||||
"classname": "RscPicture",
|
||||
"defaultPos": 2,
|
||||
"defaultPopulate": 1,
|
||||
"arraySize": 10,
|
||||
"width": 4,
|
||||
"height": 4,
|
||||
"offSetX": 0,
|
||||
"offSetY": 1.3,
|
||||
"angle": [
|
||||
-5,
|
||||
0.5,
|
||||
0.5,
|
||||
0.5
|
||||
],
|
||||
"scale": [
|
||||
1,
|
||||
0.05
|
||||
]
|
||||
},
|
||||
"botcenter": {
|
||||
"classname": "RscPicture",
|
||||
"defaultPos": 7,
|
||||
"defaultPopulate": 4,
|
||||
"arraySize": 9,
|
||||
"width": 5,
|
||||
"height": 5
|
||||
}
|
||||
}
|
||||
}
|
@ -11,6 +11,8 @@
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgEpochClient.hpp
|
||||
*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*[[[end]]]*/
|
||||
class CfgEpochClient
|
||||
{
|
||||
epochVersion = "0.4.0.0";
|
||||
|
601
Sources/epoch_config/Configs/CfgEpochClient.json
Normal file
601
Sources/epoch_config/Configs/CfgEpochClient.json
Normal file
@ -0,0 +1,601 @@
|
||||
{
|
||||
"CfgEpochClient": {
|
||||
"epochVersion": "0.4.0.0",
|
||||
"sapperRngChance": 100,
|
||||
"droneRngChance": 100,
|
||||
"buildingNearbyMilitary": 0,
|
||||
"buildingNearbyMilitaryRange": 300,
|
||||
"buildingNearbyMilitaryClasses": [
|
||||
"Cargo_Tower_base_F",
|
||||
"Cargo_HQ_base_F",
|
||||
"Cargo_Patrol_base_F",
|
||||
"Cargo_House_base_F"
|
||||
],
|
||||
"restrictedLocations": [
|
||||
"NameCityCapital"
|
||||
],
|
||||
"restrictedLocationsRange": 300,
|
||||
"buildingRequireJammer": 0,
|
||||
"buildingCountLimit": 200,
|
||||
"buildingJammerRange": 75,
|
||||
"JammerPerGroup": 1,
|
||||
"minJammerDistance": 650,
|
||||
"maxBuildingHeigh": 33,
|
||||
"buildingCountLeader": 125,
|
||||
"buildingCountPerMember": 5,
|
||||
"storagecountLeader": 10,
|
||||
"storagecountPerMember": 5,
|
||||
"maxdoors": 8,
|
||||
"maxgates": 5,
|
||||
"disableRemoteSensors": true,
|
||||
"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"
|
||||
],
|
||||
"niteLight": [
|
||||
1,
|
||||
1.88,
|
||||
22
|
||||
],
|
||||
"ryanZombiesEnabled": true,
|
||||
"antagonistSpawnIndex": [
|
||||
[
|
||||
"Epoch_Cloak_F",
|
||||
1
|
||||
],
|
||||
[
|
||||
"GreatWhite_F",
|
||||
2
|
||||
],
|
||||
[
|
||||
"Epoch_Sapper_F",
|
||||
2
|
||||
],
|
||||
[
|
||||
"Epoch_SapperB_F",
|
||||
1
|
||||
],
|
||||
[
|
||||
"I_UAV_01_F",
|
||||
2
|
||||
],
|
||||
[
|
||||
"PHANTOM",
|
||||
1
|
||||
],
|
||||
[
|
||||
"B_Heli_Transport_01_F",
|
||||
1
|
||||
],
|
||||
[
|
||||
"EPOCH_RyanZombie_1",
|
||||
12
|
||||
]
|
||||
],
|
||||
"customVarsDefaults": [
|
||||
[
|
||||
"Temp",
|
||||
98.6,
|
||||
[
|
||||
106.7,
|
||||
95,
|
||||
102,
|
||||
105,
|
||||
96,
|
||||
95
|
||||
]
|
||||
],
|
||||
[
|
||||
"Hunger",
|
||||
5000,
|
||||
[
|
||||
5000,
|
||||
0,
|
||||
5001,
|
||||
5001,
|
||||
1250,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"Thirst",
|
||||
2500,
|
||||
[
|
||||
2500,
|
||||
0,
|
||||
2501,
|
||||
2501,
|
||||
625,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"AliveTime",
|
||||
0,
|
||||
[
|
||||
-2,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"Energy",
|
||||
0,
|
||||
[
|
||||
2500,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"Wet",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0,
|
||||
35,
|
||||
55,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"Soiled",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0,
|
||||
35,
|
||||
55,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"Immunity",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"Toxicity",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0,
|
||||
35,
|
||||
55,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"Stamina",
|
||||
100,
|
||||
[
|
||||
"EPOCH_playerStaminaMax",
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"Crypto",
|
||||
0,
|
||||
[
|
||||
250000,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"HitPoints",
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
[
|
||||
1,
|
||||
0,
|
||||
0.5,
|
||||
1,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"BloodP",
|
||||
100,
|
||||
[
|
||||
190,
|
||||
0,
|
||||
120,
|
||||
140,
|
||||
70,
|
||||
50
|
||||
]
|
||||
],
|
||||
[
|
||||
"SpawnArray",
|
||||
[],
|
||||
[]
|
||||
],
|
||||
[
|
||||
"Karma",
|
||||
0,
|
||||
[
|
||||
50000,
|
||||
-50000
|
||||
]
|
||||
],
|
||||
[
|
||||
"Alcohol",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0,
|
||||
35,
|
||||
55,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"Radiation",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0,
|
||||
35,
|
||||
55,
|
||||
-1,
|
||||
-1
|
||||
]
|
||||
],
|
||||
[
|
||||
"Nuisance",
|
||||
0,
|
||||
[
|
||||
100,
|
||||
0
|
||||
]
|
||||
],
|
||||
[
|
||||
"MissionArray",
|
||||
[],
|
||||
[]
|
||||
]
|
||||
],
|
||||
"hudConfigs": [
|
||||
[
|
||||
[
|
||||
"BloodP",
|
||||
"",
|
||||
"",
|
||||
[
|
||||
"getPlayerDamage",
|
||||
">=",
|
||||
0.7
|
||||
]
|
||||
],
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\bleeding_ca.paa",
|
||||
[
|
||||
"forceUpdate"
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"Oxygen",
|
||||
"getPlayerOxygenRemaining",
|
||||
"",
|
||||
[],
|
||||
[
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
0.55
|
||||
]
|
||||
],
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\oxygen_ca.paa"
|
||||
],
|
||||
[
|
||||
"Hunger",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\hunger_ca.paa",
|
||||
[
|
||||
"forceBloodRise"
|
||||
]
|
||||
],
|
||||
[
|
||||
"Thirst",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\thirst_ca.paa",
|
||||
[
|
||||
"forceBloodRise"
|
||||
]
|
||||
],
|
||||
[
|
||||
"Temp",
|
||||
"topRight",
|
||||
[
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\hot_ca.paa",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\cold_ca.paa"
|
||||
],
|
||||
[
|
||||
"forceFatigue"
|
||||
]
|
||||
],
|
||||
[
|
||||
"Toxicity",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\hazzard_ca.paa"
|
||||
],
|
||||
[
|
||||
"Wet",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\wet_ca.paa"
|
||||
],
|
||||
[
|
||||
"Alcohol",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\drunk_ca.paa"
|
||||
],
|
||||
[
|
||||
"Soiled",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\soiled_ca.paa"
|
||||
],
|
||||
[
|
||||
"Radiation",
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\rads_ca.paa"
|
||||
],
|
||||
[
|
||||
[
|
||||
"HitPoints",
|
||||
"getPlayerHitPointDamage",
|
||||
"HitLegs"
|
||||
],
|
||||
"topRight",
|
||||
"x\\addons\\a3_epoch_code\\Data\\UI\\broken_ca.paa"
|
||||
]
|
||||
],
|
||||
"group_upgrade_lvl": [
|
||||
4,
|
||||
"1000",
|
||||
6,
|
||||
"1500",
|
||||
8,
|
||||
"2000",
|
||||
10,
|
||||
"2500",
|
||||
12,
|
||||
"3000",
|
||||
14,
|
||||
"3500",
|
||||
16,
|
||||
"4000",
|
||||
32,
|
||||
"8000",
|
||||
64,
|
||||
"16000"
|
||||
],
|
||||
"displayAddEventHandler": [
|
||||
"keyDown",
|
||||
"keyUp"
|
||||
],
|
||||
"keyDown": "(_this call EPOCH_KeyDown)",
|
||||
"keyUp": "(_this call EPOCH_KeyUp)",
|
||||
"addEventHandler": [
|
||||
"Respawn",
|
||||
"Put",
|
||||
"Take",
|
||||
"InventoryClosed",
|
||||
"InventoryOpened",
|
||||
"Fired",
|
||||
"Killed",
|
||||
"HandleRating",
|
||||
"GetInMan",
|
||||
"GetOutMan"
|
||||
],
|
||||
"Respawn": "(_this select 0) call EPOCH_clientRespawn",
|
||||
"Put": "(_this select 1) call EPOCH_interact;_this call EPOCH_PutHandler",
|
||||
"Take": "(_this select 1) call EPOCH_interact;_this call EPOCH_UnisexCheck",
|
||||
"Fired": "_this call EPOCH_fnc_playerFired;",
|
||||
"InventoryClosed": "if !(EPOCH_arr_interactedObjs isEqualTo[]) then {[EPOCH_arr_interactedObjs] remoteExec['EPOCH_server_save_vehicles', 2]; EPOCH_arr_interactedObjs = [];};",
|
||||
"InventoryOpened": "_this spawn EPOCH_initUI;_container = _this select 1;_lockedNear = false;if (_container isKindOf 'GroundWeaponHolder' || _container isKindOf 'WeaponHolderSimulated') then {{if (locked _x in [2, 3] ||_x getVariable['EPOCH_Locked', false]) exitWith {_lockedNear = true}} forEach (player nearSupplies 10);};if (locked _container in [2, 3] || _container getVariable['EPOCH_Locked', false] || _lockedNear) then {[] spawn {disableSerialization;waitUntil {!isNull findDisplay 602};_display = findDisplay 602;_ctrl_cargo = _display displayCtrl 6401;_ctrl_ground = _display displayCtrl 6321;_ctrl_cargo ctrlEnable false;ctrlSetFocus _ctrl_ground;ctrlActivate _ctrl_ground;};};",
|
||||
"Killed": "_this call EPOCH_fnc_playerDeath;",
|
||||
"HandleRating": "EPOCH_playerKarma = EPOCH_playerKarma + (_this select 1);0",
|
||||
"HandleDamage": "",
|
||||
"HandleHeal": "",
|
||||
"Dammaged": "",
|
||||
"Hit": "",
|
||||
"HitPart": "",
|
||||
"GetInMan": "_this call EPOCH_getInMan",
|
||||
"GetOutMan": "_this call EPOCH_getOutMan;",
|
||||
"nonJammerAI": [
|
||||
"B_Heli_Transport_01_F",
|
||||
"PHANTOM",
|
||||
"EPOCH_Sapper_F",
|
||||
"Epoch_SapperB_F",
|
||||
"I_UAV_01_F",
|
||||
"EPOCH_RyanZombie_1"
|
||||
],
|
||||
"nonTraderAI": [
|
||||
"B_Heli_Transport_01_F",
|
||||
"PHANTOM",
|
||||
"EPOCH_Sapper_F",
|
||||
"Epoch_SapperB_F",
|
||||
"I_UAV_01_F",
|
||||
"Epoch_Cloak_F",
|
||||
"GreatWhite_F",
|
||||
"EPOCH_RyanZombie_1"
|
||||
],
|
||||
"nonTraderAIRange": 50,
|
||||
"fishLoots": [
|
||||
"ItemTuna",
|
||||
"ItemSeaBass",
|
||||
"ItemSeaBass",
|
||||
"ItemSeaBass",
|
||||
"ItemTrout",
|
||||
"ItemTrout",
|
||||
"ItemTrout",
|
||||
"ItemTrout",
|
||||
"ItemTrout",
|
||||
"ItemTrout"
|
||||
],
|
||||
"animalAiTables": [
|
||||
"Sheep_random_EPOCH",
|
||||
"Sheep_random_EPOCH",
|
||||
"Goat_random_EPOCH",
|
||||
"Goat_random_EPOCH",
|
||||
"Goat_random_EPOCH",
|
||||
[
|
||||
"Cock_random_EPOCH",
|
||||
"Hen_random_EPOCH"
|
||||
],
|
||||
[
|
||||
"Cock_random_EPOCH",
|
||||
"Hen_random_EPOCH"
|
||||
],
|
||||
"Rabbit_EPOCH",
|
||||
"Rabbit_EPOCH",
|
||||
"Rabbit_EPOCH",
|
||||
"Snake_random_EPOCH",
|
||||
"Snake2_random_EPOCH",
|
||||
[
|
||||
"Fin_random_EPOCH",
|
||||
"Alsatian_Random_EPOCH"
|
||||
]
|
||||
],
|
||||
"playerDeathScreen": "TapOut",
|
||||
"playerKilledScreen": "TapOut2",
|
||||
"playerDisableRevenge": 0,
|
||||
"playerRevengeMinAliveTime": 900,
|
||||
"bankTransferTime": [
|
||||
0.0006,
|
||||
1.2,
|
||||
0.06
|
||||
],
|
||||
"#include0": "\"CfgEpochClient\\Altis.hpp\"",
|
||||
"#include1": "\"CfgEpochClient\\australia.hpp\"",
|
||||
"#include2": "\"CfgEpochClient\\Bornholm.hpp\"",
|
||||
"#include3": "\"CfgEpochClient\\Chernarus_Summer.hpp\"",
|
||||
"#include4": "\"CfgEpochClient\\Chernarus.hpp\"",
|
||||
"#include5": "\"CfgEpochClient\\Esseker.hpp\"",
|
||||
"#include6": "\"CfgEpochClient\\ProvingGrounds_PMC.hpp\"",
|
||||
"#include7": "\"CfgEpochClient\\Sara_dbe1.hpp\"",
|
||||
"#include8": "\"CfgEpochClient\\Sara.hpp\"",
|
||||
"#include9": "\"CfgEpochClient\\SaraLite.hpp\"",
|
||||
"#include10": "\"CfgEpochClient\\Stratis.hpp\"",
|
||||
"#include11": "\"CfgEpochClient\\takistan.hpp\"",
|
||||
"#include12": "\"CfgEpochClient\\utes.hpp\"",
|
||||
"#include13": "\"CfgEpochClient\\vr.hpp\"",
|
||||
"#include14": "\"CfgEpochClient\\Zargabad.hpp\"",
|
||||
"#include15": "\"CfgEpochClient\\Tanoa.hpp\"",
|
||||
"#include16": "\"CfgEpochClient\\WorldInteractions.hpp\""
|
||||
},
|
||||
"CfgEpochSapper": {
|
||||
"detonateDistMax": 8,
|
||||
"groanTrig": 16,
|
||||
"sRange": 300,
|
||||
"smellDist": 24,
|
||||
"reflexSpeed": 0.25,
|
||||
"nestChance": 2,
|
||||
"hideLevel": 72,
|
||||
"chargeLevel": 52
|
||||
},
|
||||
"CfgEpochUAV": {
|
||||
"UAVMinDist": 48,
|
||||
"UAVMaxDist": 180,
|
||||
"UAVHeight": 100
|
||||
},
|
||||
"CfgEpochUAVSupport": {
|
||||
"unitTypes": [
|
||||
"I_Soldier_EPOCH",
|
||||
"I_Soldier2_EPOCH",
|
||||
"I_Soldier3_EPOCH"
|
||||
],
|
||||
"maxUnitNum": 2,
|
||||
"minAISkill": 0.2,
|
||||
"maxAimingAccuracy": 0.7,
|
||||
"maxAimingShake": 0.9,
|
||||
"maxAimingSpeed": 0.6,
|
||||
"maxEndurance": 0.4,
|
||||
"maxSpotDistance": 0.4,
|
||||
"maxSpotTime": 0.3,
|
||||
"maxCourage": 0.3,
|
||||
"maxReloadSpeed": 0.5,
|
||||
"maxCommanding": 0.4,
|
||||
"maxGeneral": 0.4
|
||||
},
|
||||
"CfgEpochAirDrop": {
|
||||
"AirDropFreq": 1200,
|
||||
"AirDropChance": 6
|
||||
},
|
||||
"CfgEpochCloak": {
|
||||
"cRange": 300,
|
||||
"cAggression": 75,
|
||||
"attackFrequency": 120,
|
||||
"attackDistance": 38,
|
||||
"targetChangeFrequency": 42,
|
||||
"teleportChance": 66,
|
||||
"hoverFrequency": 1280
|
||||
},
|
||||
"CfgEpochRyanZombie": {
|
||||
"zeds": [
|
||||
"EPOCH_RyanZombie_1",
|
||||
"EPOCH_RyanZombie_2",
|
||||
"EPOCH_RyanZombie_3",
|
||||
"EPOCH_RyanZombie_4",
|
||||
"EPOCH_RyanZombie_5"
|
||||
],
|
||||
"attackDist": 1.6,
|
||||
"range": 45,
|
||||
"disposeRange": 800,
|
||||
"smell": [
|
||||
38,
|
||||
0.42
|
||||
],
|
||||
"sight": [
|
||||
28,
|
||||
0.72
|
||||
],
|
||||
"hearing": [
|
||||
108,
|
||||
0.68
|
||||
],
|
||||
"memory": [
|
||||
480,
|
||||
0.8
|
||||
],
|
||||
"reflexSpeed": 0.25,
|
||||
"moans": [
|
||||
"ryanzombiesmoan1",
|
||||
"ryanzombiesmoan2",
|
||||
"ryanzombiesmoan3",
|
||||
"ryanzombiesmoan4"
|
||||
],
|
||||
"screams": [
|
||||
"ryanzombiesscream1",
|
||||
"ryanzombiesscream2",
|
||||
"ryanzombiesscream3",
|
||||
"ryanzombiesscream4",
|
||||
"ryanzombiesscream5",
|
||||
"ryanzombiesscream6",
|
||||
"ryanzombiesscream7",
|
||||
"ryanzombiesscream8",
|
||||
"ryanzombiesscream9"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,40 +1,34 @@
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
Author: Raimonds Virtoss - EpochMod.com
|
||||
|
||||
Contributors:
|
||||
|
||||
Description:
|
||||
Config for Epoch Configuration system
|
||||
|
||||
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_config/Configs/CfgEpochConfiguration.hpp
|
||||
@author = "Raimonds Virtoss - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
@description = "Config for Epoch Configuration system";
|
||||
@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_config/Configs/CfgEpochConfiguration.hpp";
|
||||
*/
|
||||
|
||||
class CfgEpochConfiguration
|
||||
{
|
||||
/** class order here decides order of buttons on gui **/
|
||||
class remap
|
||||
{
|
||||
name = "Controls";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "EpochConfigKeyMap";
|
||||
};
|
||||
class HUD
|
||||
{
|
||||
name = "Customize HUD (WIP)";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "Epoch_main_config_dynamicHUD";
|
||||
};
|
||||
class html
|
||||
{
|
||||
name = "Changelog";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "Epoch_main_config_changelog";
|
||||
};
|
||||
class remap
|
||||
{
|
||||
name = "Controls";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "EpochConfigKeyMap";
|
||||
};
|
||||
class HUD
|
||||
{
|
||||
name = "Customize HUD (WIP)";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "Epoch_main_config_dynamicHUD";
|
||||
};
|
||||
class html
|
||||
{
|
||||
name = "Changelog";
|
||||
color[] = {1,1,1,1};
|
||||
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
||||
controlGroup = "Epoch_main_config_changelog";
|
||||
};
|
||||
};
|
||||
|
||||
/*[[[end]]]*/
|
||||
|
44
Sources/epoch_config/Configs/CfgEpochConfiguration.json
Normal file
44
Sources/epoch_config/Configs/CfgEpochConfiguration.json
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
"_header": {
|
||||
"@author": "Raimonds Virtoss - https://EpochMod.com",
|
||||
"@contributors": [],
|
||||
"@description": "Config for Epoch Configuration system",
|
||||
"@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/{filename}"
|
||||
},
|
||||
"CfgEpochConfiguration": {
|
||||
"remap": {
|
||||
"name": "Controls",
|
||||
"color": [
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"icon": "\\x\\addons\\a3_epoch_code\\Data\\owner.paa",
|
||||
"controlGroup": "EpochConfigKeyMap"
|
||||
},
|
||||
"HUD": {
|
||||
"name": "Customize HUD (WIP)",
|
||||
"color": [
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"icon": "\\x\\addons\\a3_epoch_code\\Data\\owner.paa",
|
||||
"controlGroup": "Epoch_main_config_dynamicHUD"
|
||||
},
|
||||
"html": {
|
||||
"name": "Changelog",
|
||||
"color": [
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"icon": "\\x\\addons\\a3_epoch_code\\Data\\owner.paa",
|
||||
"controlGroup": "Epoch_main_config_changelog"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,41 +1,56 @@
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
@description = "Epoch cfgfunctions";
|
||||
@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_config/Configs/CfgFunctions.hpp";
|
||||
*/
|
||||
class cfgFunctions
|
||||
{
|
||||
class A3
|
||||
{
|
||||
tag = "BIS";
|
||||
class functions {
|
||||
// BIS_fnc_returnVector
|
||||
class returnVector {
|
||||
file = "epoch_code\compile\bis_functions\returnVector.sqf";
|
||||
};
|
||||
};
|
||||
};
|
||||
class EPOCH
|
||||
{
|
||||
tag = "EPOCH";
|
||||
class functions {
|
||||
class returnConfigEntryV2 {
|
||||
file = "epoch_code\compile\functions\EPOCH_fn_returnConfigEntryV2.sqf";
|
||||
};
|
||||
class isAny {
|
||||
file = "epoch_code\compile\both\EPOCH_isAny.sqf";
|
||||
};
|
||||
class compiler {
|
||||
file = "epoch_code\compile\both\EPOCH_compiler.sqf";
|
||||
};
|
||||
};
|
||||
class Client
|
||||
{
|
||||
class init
|
||||
{
|
||||
file = "epoch_code\init\fn_init.sqf";
|
||||
preInit = 1;
|
||||
};
|
||||
class postinit
|
||||
{
|
||||
file = "epoch_code\init\fn_postinit.sqf";
|
||||
postInit = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
class A3
|
||||
{
|
||||
tag = "BIS";
|
||||
class functions
|
||||
{
|
||||
class returnVector
|
||||
{
|
||||
file = "epoch_code\compile\bis_functions\returnVector.sqf";
|
||||
};
|
||||
};
|
||||
};
|
||||
class EPOCH
|
||||
{
|
||||
tag = "EPOCH";
|
||||
class functions
|
||||
{
|
||||
class returnConfigEntryV2
|
||||
{
|
||||
file = "epoch_code\compile\functions\EPOCH_fn_returnConfigEntryV2.sqf";
|
||||
};
|
||||
class isAny
|
||||
{
|
||||
file = "epoch_code\compile\both\EPOCH_isAny.sqf";
|
||||
};
|
||||
class compiler
|
||||
{
|
||||
file = "epoch_code\compile\both\EPOCH_compiler.sqf";
|
||||
};
|
||||
};
|
||||
class Client
|
||||
{
|
||||
class init
|
||||
{
|
||||
file = "epoch_code\init\fn_init.sqf";
|
||||
preInit = 1;
|
||||
};
|
||||
class postinit
|
||||
{
|
||||
file = "epoch_code\init\fn_postinit.sqf";
|
||||
postInit = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/*[[[end]]]*/
|
||||
|
43
Sources/epoch_config/Configs/CfgFunctions.json
Normal file
43
Sources/epoch_config/Configs/CfgFunctions.json
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
"_header": {
|
||||
"@author": "Aaron Clark - https://EpochMod.com",
|
||||
"@contributors": [],
|
||||
"@description": "Epoch cfgfunctions",
|
||||
"@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/{filename}"
|
||||
},
|
||||
"cfgFunctions": {
|
||||
"A3": {
|
||||
"tag": "BIS",
|
||||
"functions": {
|
||||
"returnVector": {
|
||||
"file": "epoch_code\\compile\\bis_functions\\returnVector.sqf"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EPOCH": {
|
||||
"tag": "EPOCH",
|
||||
"functions": {
|
||||
"returnConfigEntryV2": {
|
||||
"file": "epoch_code\\compile\\functions\\EPOCH_fn_returnConfigEntryV2.sqf"
|
||||
},
|
||||
"isAny": {
|
||||
"file": "epoch_code\\compile\\both\\EPOCH_isAny.sqf"
|
||||
},
|
||||
"compiler": {
|
||||
"file": "epoch_code\\compile\\both\\EPOCH_compiler.sqf"
|
||||
}
|
||||
},
|
||||
"Client": {
|
||||
"init": {
|
||||
"file": "epoch_code\\init\\fn_init.sqf",
|
||||
"preInit": 1
|
||||
},
|
||||
"postinit": {
|
||||
"file": "epoch_code\\init\\fn_postinit.sqf",
|
||||
"postInit": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -17,7 +17,7 @@ interactAttributes[] = {
|
||||
{"Radiation",0}
|
||||
};
|
||||
*/
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {"Andrew Gregory"};
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
|
@ -26,38 +26,38 @@
|
||||
"interactAttributes": []
|
||||
},
|
||||
"Land_MPS_EPOCH": {
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"container_epoch": {
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"PlotPole_EPOCH": {
|
||||
"interactMode": 1,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Tipi_EPOCH": {
|
||||
"interactMode": 4,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Tipi_SIM_EPOCH": {
|
||||
"interactMode": 1,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"StorageShelf_EPOCH": {
|
||||
"interactMode": 4,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"WorkBench_EPOCH": {
|
||||
"interactMode": 4,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Foundation_EPOCH": {
|
||||
"interactMode": 1,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"WoodFoundation_EPOCH": {
|
||||
"interactMode": 1,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Sheep_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -68,7 +68,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Goat_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -79,7 +79,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Cock_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -90,7 +90,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Hen_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -101,7 +101,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Rabbit_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -112,7 +112,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Fin_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -127,7 +127,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Alsatian_Random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -142,7 +142,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Epoch_Sapper_F": {
|
||||
"interactMode": 3,
|
||||
@ -159,7 +159,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Epoch_SapperB_F": {
|
||||
"interactMode": 3,
|
||||
@ -176,7 +176,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"I_UAV_01_F": {
|
||||
"interactMode": 3,
|
||||
@ -188,19 +188,19 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Epoch_Female_F": {
|
||||
"interactMode": 2,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Epoch_Male_F": {
|
||||
"interactMode": 2,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"C_man_1": {
|
||||
"interactMode": 2,
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"SapperHead_SIM_EPOCH": {
|
||||
"interactMode": 0,
|
||||
@ -210,7 +210,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"SapperCorpse_SIM_EPOCH": {
|
||||
"interactMode": 0,
|
||||
@ -220,7 +220,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Snake_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -247,7 +247,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Snake2_random_EPOCH": {
|
||||
"interactMode": 3,
|
||||
@ -274,7 +274,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"GreatWhite_F": {
|
||||
"interactMode": 3,
|
||||
@ -289,7 +289,7 @@
|
||||
"ppEffect": [],
|
||||
"aliveState": 1,
|
||||
"interactAttributes": [],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"SmokeShellCustom": {
|
||||
"distance": 6,
|
||||
@ -301,7 +301,7 @@
|
||||
"bloodpAmount": 3,
|
||||
"canSee": "true",
|
||||
"ppEffect": [],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"Epoch_Cloak_F": {
|
||||
"distance": 30,
|
||||
@ -443,7 +443,7 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"EPOCH_RyanZombie_1": {
|
||||
"distance": 3,
|
||||
@ -495,109 +495,109 @@
|
||||
1
|
||||
]
|
||||
],
|
||||
"_parentName": "Default"
|
||||
"_inherit": "Default"
|
||||
},
|
||||
"EPOCH_RyanZombie_2": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_C": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_C": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_C": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_C": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_C": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_Sp": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_Sp": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_Sp": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_Sp": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_Sp": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_B": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_B": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_B": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_B": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_B": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_W": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_W": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_W": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_W": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_W": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_M": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_M": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_M": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_M": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_M": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_1_S": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_2_S": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_3_S": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_4_S": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
},
|
||||
"EPOCH_RyanZombie_5_S": {
|
||||
"_parentName": "EPOCH_RyanZombie_1"
|
||||
"_inherit": "EPOCH_RyanZombie_1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
@ -3922,6 +3922,10 @@ class CfgPricing
|
||||
{
|
||||
price = 3;
|
||||
};
|
||||
class H_105_EPOCH
|
||||
{
|
||||
price = 3;
|
||||
};
|
||||
class wolf_mask_epoch
|
||||
{
|
||||
price = 30;
|
||||
|
@ -2971,6 +2971,9 @@
|
||||
"H_104_EPOCH": {
|
||||
"price": 3
|
||||
},
|
||||
"H_105_EPOCH": {
|
||||
"price": 3
|
||||
},
|
||||
"wolf_mask_epoch": {
|
||||
"price": 30
|
||||
},
|
||||
|
@ -1,201 +0,0 @@
|
||||
class ItemEmptyTin {
|
||||
price = 1;
|
||||
};
|
||||
class ItemSodaEmpty {
|
||||
price = 1;
|
||||
};
|
||||
class ItemSodaAlpineDude {
|
||||
price = 5;
|
||||
};
|
||||
class ItemHotwire {
|
||||
price = 15;
|
||||
};
|
||||
class ItemKeyKit {
|
||||
price = 15;
|
||||
};
|
||||
class ItemBarrelF {
|
||||
price = 200;
|
||||
};
|
||||
class ItemBarrelE {
|
||||
price = 50;
|
||||
};
|
||||
class ItemPipe {
|
||||
price = 10;
|
||||
};
|
||||
class ItemKey {
|
||||
price = 10;
|
||||
};
|
||||
class ItemKeyBlue {
|
||||
price = 10;
|
||||
};
|
||||
class ItemKeyGreen {
|
||||
price = 10;
|
||||
};
|
||||
class ItemKeyRed {
|
||||
price = 10;
|
||||
};
|
||||
class ItemKeyYellow {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc1 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc2 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc3 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc4 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc5 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc6 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc7 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemDoc8 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemVehDoc1 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemVehDoc2 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemVehDoc3 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemVehDoc4 {
|
||||
price = 10;
|
||||
};
|
||||
class ItemBulb {
|
||||
price = 10;
|
||||
};
|
||||
class ItemBurlap {
|
||||
price = 10;
|
||||
};
|
||||
class ItemBriefcaseE {
|
||||
price = 10;
|
||||
};
|
||||
class ItemBriefcaseGold100oz {
|
||||
price = 10000;
|
||||
};
|
||||
class ItemAluminumBar {
|
||||
price = 10;
|
||||
};
|
||||
class ItemCopperBar {
|
||||
price = 100;
|
||||
};
|
||||
class ItemTinBar {
|
||||
price = 1;
|
||||
};
|
||||
class ItemPlywoodPack {
|
||||
price = 100;
|
||||
};
|
||||
class ItemComboLock {
|
||||
price = 45;
|
||||
};
|
||||
class Item_AssaultPack_cbr {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_dgtl {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_khk {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_mcamo {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_ocamo {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_rgr {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_sgg {
|
||||
price = 10;
|
||||
};
|
||||
class Item_AssaultPack_blk {
|
||||
price = 10;
|
||||
};
|
||||
class Item_Carryall_cbr {
|
||||
price = 40;
|
||||
};
|
||||
class Item_Carryall_khk {
|
||||
price = 40;
|
||||
};
|
||||
class Item_Carryall_mcamo {
|
||||
price = 40;
|
||||
};
|
||||
class Item_Carryall_ocamo {
|
||||
price = 40;
|
||||
};
|
||||
class Item_Carryall_oli {
|
||||
price = 40;
|
||||
};
|
||||
class Item_Carryall_oucamo {
|
||||
price = 40;
|
||||
};
|
||||
class Item_FieldPack_blk {
|
||||
price = 15;
|
||||
};
|
||||
class Item_FieldPack_cbr {
|
||||
price = 15;
|
||||
};
|
||||
class Item_FieldPack_khk {
|
||||
price = 15;
|
||||
};
|
||||
class Item_FieldPack_ocamo {
|
||||
price = 15;
|
||||
};
|
||||
class Item_FieldPack_oli {
|
||||
price = 15;
|
||||
};
|
||||
class Item_FieldPack_oucamo {
|
||||
price = 15;
|
||||
};
|
||||
class Item_Kitbag_cbr {
|
||||
price = 25;
|
||||
};
|
||||
class Item_Kitbag_mcamo {
|
||||
price = 25;
|
||||
};
|
||||
class Item_Kitbag_rgr {
|
||||
price = 25;
|
||||
};
|
||||
class Item_Kitbag_sgg {
|
||||
price = 25;
|
||||
};
|
||||
class Item_TacticalPack_blk {
|
||||
price = 20;
|
||||
};
|
||||
class Item_TacticalPack_mcamo {
|
||||
price = 20;
|
||||
};
|
||||
class Item_TacticalPack_ocamo {
|
||||
price = 20;
|
||||
};
|
||||
class Item_TacticalPack_oli {
|
||||
price = 20;
|
||||
};
|
||||
class Item_TacticalPack_rgr {
|
||||
price = 20;
|
||||
};
|
||||
class Item_smallbackpack_red {
|
||||
price = 22;
|
||||
};
|
||||
class Item_smallbackpack_green {
|
||||
price = 22;
|
||||
};
|
||||
class Item_smallbackpack_teal {
|
||||
price = 22;
|
||||
};
|
||||
class Item_smallbackpack_pink {
|
||||
price = 22;
|
||||
};
|
@ -12,7 +12,7 @@
|
||||
Github:
|
||||
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgRemoteExec.hpp
|
||||
*/
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {"Andrew Gregory"};
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
|
@ -112,37 +112,37 @@
|
||||
]
|
||||
},
|
||||
"WoodWall1_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodWall2_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodWall3_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodWall4_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodLargeWallCor_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodLargeWallDoorway_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodLargeWallDoor_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodLargeWallDoorL_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"CinderWallGarage_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"CinderWall_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"CinderWallHalf_EPOCH": {
|
||||
"_parentName": "WoodLargeWall_EPOCH"
|
||||
"_inherit": "WoodLargeWall_EPOCH"
|
||||
},
|
||||
"WoodFloor_Epoch": {
|
||||
"nails": [
|
||||
@ -245,7 +245,7 @@
|
||||
]
|
||||
},
|
||||
"MetalFloor_EPOCH": {
|
||||
"_parentName": "WoodFloor_Epoch"
|
||||
"_inherit": "WoodFloor_Epoch"
|
||||
},
|
||||
"WoodStairs_EPOCH": {
|
||||
"nails": [
|
||||
@ -276,13 +276,13 @@
|
||||
]
|
||||
},
|
||||
"WoodStairs2_EPOCH": {
|
||||
"_parentName": "WoodStairs_EPOCH"
|
||||
"_inherit": "WoodStairs_EPOCH"
|
||||
},
|
||||
"WoodTower_EPOCH": {
|
||||
"_parentName": "WoodStairs_EPOCH"
|
||||
"_inherit": "WoodStairs_EPOCH"
|
||||
},
|
||||
"WoodRamp_EPOCH": {
|
||||
"_parentName": "WoodStairs_EPOCH"
|
||||
"_inherit": "WoodStairs_EPOCH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
@ -8,6 +8,46 @@
|
||||
*/
|
||||
class CfgSounds
|
||||
{
|
||||
class sapper_groan0
|
||||
{
|
||||
sound[] = {"\x\addons\a3_epoch_assets\sounds\sapper\sapper_groan2",1.0,1.0};
|
||||
titles[] = {};
|
||||
};
|
||||
class sapper_groan1
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\sapper\sapper_groan3", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class sapper_groan2
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\sapper\sapper_groan4", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class sapper_explode
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\sapper\sapper_preExplode", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class sapper_alert0
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\sapper\sapper_alert1", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class drone_alert0
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\drone\drone_alert2", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class snake_bite0
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\snake\snake_bite", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class jack_pump
|
||||
{
|
||||
sound[] = { "\x\addons\a3_epoch_assets\sounds\tools\jack", 1.0, 1.0 };
|
||||
titles[] = {};
|
||||
};
|
||||
class dog_bark
|
||||
{
|
||||
sound[] = {"@A3\Sounds_F\ambient\animals\dog1",0.6,1.0};
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*[[[cog import arma_config_tools; arma_config_tools.json_to_arma()]]]*/
|
||||
/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
|
||||
/*
|
||||
@author = "Aaron Clark - https://EpochMod.com";
|
||||
@contributors[] = {};
|
||||
|
File diff suppressed because it is too large
Load Diff
2805
Sources/epoch_config/Configs/cfgCrafting.json
Normal file
2805
Sources/epoch_config/Configs/cfgCrafting.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -1 +1 @@
|
||||
build=604;
|
||||
build=606;
|
||||
|
@ -1 +1 @@
|
||||
build=604;
|
||||
build=606;
|
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
build=604;
|
||||
build=606;
|
||||
|
@ -1 +1 @@
|
||||
build=604;
|
||||
build=606;
|
||||
|
@ -1305,10 +1305,11 @@ class CfgLootTable
|
||||
{ { "H_90_EPOCH", "item" }, 1 },
|
||||
{ { "H_91_EPOCH", "item" }, 1 },
|
||||
{ { "H_92_EPOCH", "item" }, 1 },
|
||||
{ { "H_104_EPOCH", "item" }, 1 }
|
||||
//{ { "wolf_mask_epoch", "item" }, 1 },
|
||||
//{ { "pkin_mask_epoch", "item" }, 1 },
|
||||
//{ { "clown_mask_epoch", "item" }, 1 }
|
||||
{ { "H_104_EPOCH", "item" }, 1 },
|
||||
{ { "H_105_EPOCH", "item" }, 1 },
|
||||
{ { "wolf_mask_epoch", "item" }, 1 },
|
||||
{ { "pkin_mask_epoch", "item" }, 1 },
|
||||
{ { "clown_mask_epoch", "item" }, 1 }
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -110,7 +110,8 @@ class CfgLootTable_CUP
|
||||
// Marksman DLC
|
||||
{ { "SniperRifleMarkDLC", "CfgLootTable" }, 10 },
|
||||
|
||||
{ { "srifle_LRR_F", "weapon" }, 11 },
|
||||
{ { "srifle_LRR_F", "weapon" }, 6 },
|
||||
{ { "srifle_LRR_camo_F", "weapon" }, 5 },
|
||||
{ { "srifle_GM6_F", "weapon" }, 14 },
|
||||
{ { "srifle_DMR_01_F", "weapon" }, 12 },
|
||||
{ { "SniperRifleM14", "CfgLootTable" }, 18 },
|
||||
@ -1867,10 +1868,11 @@ class CfgLootTable_CUP
|
||||
{ { "H_90_EPOCH", "item" }, 1 },
|
||||
{ { "H_91_EPOCH", "item" }, 1 },
|
||||
{ { "H_92_EPOCH", "item" }, 1 },
|
||||
{ { "H_104_EPOCH", "item" }, 1 }
|
||||
//{ { "wolf_mask_epoch", "item" }, 1 },
|
||||
//{ { "pkin_mask_epoch", "item" }, 1 },
|
||||
//{ { "clown_mask_epoch", "item" }, 1 }
|
||||
{ { "H_104_EPOCH", "item" }, 1 },
|
||||
{ { "H_105_EPOCH", "item" }, 1 },
|
||||
{ { "wolf_mask_epoch", "item" }, 1 },
|
||||
{ { "pkin_mask_epoch", "item" }, 1 },
|
||||
{ { "clown_mask_epoch", "item" }, 1 }
|
||||
};
|
||||
};
|
||||
};
|
||||
|
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.
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user