Skip to content

Commit

Permalink
Merge pull request #126 from wersal454/crashsite-mission
Browse files Browse the repository at this point in the history
Crashsite mission
  • Loading branch information
SilenceIsFatto authored May 10, 2024
2 parents ede7e14 + a0a3ed1 commit 35fcad5
Show file tree
Hide file tree
Showing 20 changed files with 1,963 additions and 14 deletions.
4 changes: 3 additions & 1 deletion A3A/addons/core/CfgFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,9 @@ class CfgFunctions
class SUPP_Supplies {};
class LOG_Salvage {};
class LOG_Airdrop {};
class LOG_Helicrash {};
class LOG_Crashsite {};
class LOG_Crashsite_Satellite{};
class LOG_Helicrash {};;
class missionRequest {};
class REP_Antenna {};
class RES_Prisoners {};
Expand Down
9 changes: 8 additions & 1 deletion A3A/addons/core/CfgSounds.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ class CfgSounds
titles[] = { 1, "" };
};

class Sonic
{
name = "Sonic";
sound[] = {EQPATHTOFOLDER(core,Sounds\Misc\Sonic.ogg), 1, 1, 100};
titles[] = { 1, "" };
};

class A3AP_UiSuccess
{
name = "A3AP_UiSuccess";
Expand Down Expand Up @@ -358,4 +365,4 @@ class CfgSounds
sound[] = {EQPATHTOFOLDER(core,Sounds\Civilian\Fear\fear6.ogg), 0.6, 1, 30};
titles[] = {};
};
};
};
Binary file added A3A/addons/core/Sounds/Misc/Sonic.ogg
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ private _hasRF = "rf" in A3A_enabledDLC;
// Vehicles //
//////////////////////////

["vehiclesDropPod", ["Land_Pod_Heli_Transport_04_covered_F"]] call _fnc_saveToTemplate;

["ammobox", "B_supplyCrate_F"] call _fnc_saveToTemplate; //Don't touch or you die a sad and lonely death!
["surrenderCrate", "Box_East_Wps_F"] call _fnc_saveToTemplate; //Changeing this from default will require you to define logistics attachement offset for the box type
["equipmentBox", "Box_CSAT_Equip_F"] call _fnc_saveToTemplate; //Changeing this from default will require you to define logistics attachement offset for the box type
Expand Down Expand Up @@ -205,6 +207,7 @@ if (_hasWs) then {
]] call _fnc_saveToTemplate;

["variants", [
["Land_Pod_Heli_Transport_04_covered_F", ["Black",1]],
["O_SFIA_Truck_02_aa_lxWS", ["Opfor",1]],
["O_SFIA_ZU23_lxWS", ["hex",1, "SFIA",0]],
["I_Truck_02_MRL_F", ["Opfor", 1, "Indep",0]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ private _hasRF = "rf" in A3A_enabledDLC;
// Vehicles //
//////////////////////////

["vehiclesDropPod", ["SpaceshipCapsule_01_F"]] call _fnc_saveToTemplate;

["ammobox", "B_supplyCrate_F"] call _fnc_saveToTemplate; //Don't touch or you die a sad and lonely death!
["surrenderCrate", "Box_NATO_Wps_F"] call _fnc_saveToTemplate; //Changeing this from default will require you to define logistics attachement offset for the box type
["equipmentBox", "Box_NATO_Equip_F"] call _fnc_saveToTemplate; //Changeing this from default will require you to define logistics attachement offset for the box type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ if (_hasGM) then {
};

if (_hasCSLA) then {
_backpacks append ["US85_bpSf","FIA_bpPack US85_bpAlice"];
_backpacks append ["US85_bpSf","FIA_bpPack", "US85_bpAlice"];
};

_loadoutData set ["offuniforms", _offuniforms]; ///check offuniforms later.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ if (_hasGM) then {
};

if (_hasCSLA) then {
_backpacks append ["US85_bpSf","FIA_bpPack US85_bpAlice"];
_backpacks append ["US85_bpSf","FIA_bpPack" ,"US85_bpAlice"];
};

_loadoutData set ["offuniforms", _offuniforms]; ///check offuniforms later
Expand Down
Loading

0 comments on commit 35fcad5

Please sign in to comment.