Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework: Music #83

Merged
merged 12 commits into from
Nov 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .hemtt/launch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ workshop = [
"463939057", # ACE3
"2369477168", # Advanced Developer Tools
"1779063631", # ZEN
"3355988282", # CVO Media
]

dlc = []
Expand Down Expand Up @@ -33,7 +34,7 @@ mission = "Stratis.Stratis"
extends = "Stratis"
workshop = ["2352603233"] # Greenmag

[executeUnit]
[VR]
extends = "default"
mission = "exec.VR"

Expand Down
90 changes: 0 additions & 90 deletions .hemtt/missions/Stratis.Stratis/init.sqf
Original file line number Diff line number Diff line change
@@ -1,90 +0,0 @@
/*
* Author: Zorn
* This is purely an example
*
* Arguments:
*
* Return Value:
* None
*
* Example:
* ['something', player] call cvo_fnc_sth
*
* Public: Yes
*/

// For testing purpose
// ["Test"] call cvo_supplydrop_fnc_register;


[
"ACE Medical Box", // Name
[
["ace_banana", 69],
["ace_suture", 69],
["ACE_painkillers", 69]
], // Array of Items to be filled into - Default: []
[
// ["somebackpackclassname", 420]
], // Array of Backpacks to be filled into - Default: []
createHashMapFromArray [
["pos_start", [10,10,10]],
["emptyBox", false],
["targetMode", "MAPCLICK"],
["class_box", "ACE_medicalSupplyCrate_advanced"],
["class_air", "B_T_VTOL_01_vehicle_F"]
] // Hashmap of additional parameters that can be changed optionally
] call cvo_supplyDrop_fnc_register;

[
"Ammo Supply Box", // Name
[
["ace_banana", 69],
["ace_suture", 69],
["ACE_painkillers", 69]
], // Array of Items to be filled into - Default: []
[
// ["somebackpackclassname", 420]
], // Array of Backpacks to be filled into - Default: []
createHashMapFromArray [
["pos_start", [10,10,10]],
["emptyBox", true],
["targetMode", "MAPCLICK"],
//["class_box", "ACE_medicalSupplyCrate_advanced"],
["class_air", "B_T_VTOL_01_vehicle_F"]
] // Hashmap of additional parameters that can be changed optionally
] call cvo_supplyDrop_fnc_register;

/*
list of all possible additional parameter

createHashMapFromArray [

["Name", ""],
["pos_start", [0,0,0]],

["targetMode", "MAPCLICK"],

["pos_end", "RETURN"],

["drop_alt", 100],
["drop_alt_forced", true],

["items", ""],
["backpacks", _backpacks],

["class_box", "C_supplyCrate_F"],
["class_air", "C_Heli_Light_01_civil_F"],
["class_para", "B_Parachute_02_F"],

["side", CIVILIAN],

["isProtected", false],
["emptyBox", true],
["attachStrobe", false],
["class_strobe", "ACE_IR_Strobe_Effect"],

["attachSmoke", true],
["class_smoke", "SmokeShellOrange"] // CfgMagazines
];
`/
10 changes: 5 additions & 5 deletions .hemtt/missions/Stratis.Stratis/mission.sqm
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class EditorData
};
class LayerIndexProvider
{
nextID=88;
nextID=90;
};
class Camera
{
pos[]={3481.1941,151.60437,2632.4524};
dir[]={-0.026475759,-0.47218373,0.88110417};
up[]={-0.014181985,0.88150018,0.47197169};
aside[]={0.99955106,-9.4787538e-09,0.030034881};
dir[]={0.033633195,-0.52990609,0.84739429};
up[]={0.021015609,0.84805483,0.5294916};
aside[]={0.99921799,-1.3969839e-09,-0.039659116};
};
};
binarizationWanted=0;
Expand Down Expand Up @@ -195,7 +195,7 @@ class AddonsMetaData
class Item17
{
className="cvo_branding";
name="cvo Branding";
name="CVO Branding";
author="24th Chorni Voron";
url="https://github.com/OverlordZorn/CVO-Auxiliary";
};
Expand Down
Loading