Skip to content

Commit

Permalink
Add test mission for hemtt
Browse files Browse the repository at this point in the history
  • Loading branch information
diwako committed Oct 9, 2024
1 parent 7c19350 commit 91f1bd8
Show file tree
Hide file tree
Showing 7 changed files with 2,217 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .hemtt/missions/dui.vr/cba_settings.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// force force diwako_dui_nametags_deadColor = [0.2,0.2,0.2,1];
// force force diwako_dui_nametags_deadRenderDistance = 3.5;
// force force diwako_dui_nametags_drawRank = false;
// force force diwako_dui_nametags_enabled = true;
// force force diwako_dui_nametags_enableFOVBoost = false;
// force force diwako_dui_nametags_enableOcclusion = false;
// force force diwako_dui_nametags_groupColor = [1,1,1,1];
// force force diwako_dui_nametags_groupNameOtherGroupColor = [0.6,0.85,0.6,1];
// force force diwako_dui_nametags_nameOtherGroupColor = [0.2,1,0,1];
// force force diwako_dui_nametags_renderDistance = 15;
// force force diwako_dui_nametags_showUnconAsDead = true;
// force force diwako_dui_nametags_useLIS = true;
// force force diwako_dui_nametags_useSideIsFriendly = true;
31 changes: 31 additions & 0 deletions .hemtt/missions/dui.vr/description.ext
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
respawn = BASE;
respawnDelay = 10;
respawnDialog = 0;

// === DO NOT EDIT BELOW

showGPS = 1;
showMap = 1;
showWatch = 1;
showCompass = 1;
joinUnassigned = 1;
allowFunctionsLog = 0;
onLoadIntroTime = 0;
enableItemsDropping = 0;
onLoadMissionTime = 0;

// Debug (and CBA target debug)
enableDebugConsole = 1;
enableTargetDebug = 1;

// Clean up settings
corpseManagerMode = 1;
corpseLimit = 20;
corpseRemovalMinTime = 150;
corpseRemovalMaxTime = 600;

wreckManagerMode = 1;
wreckLimit = 10;
wreckRemovalMinTime = 300;
wreckRemovalMaxTime = 800;
minPlayerDistance = 80;
25 changes: 25 additions & 0 deletions .hemtt/missions/dui.vr/initPlayerLocal.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
enableSaving [false,false];
if (!isMultiplayer) then {
[["<t color='#ffff00'>[ Arsenal ]</t>", {["Open", true] spawn bis_fnc_arsenal}, 0, -85, false, true, "", ""]] call CBA_fnc_addPlayerAction;
[player, true] spawn ace_arsenal_fnc_initBox;
[["<t color='#ffff00'>[ ACE Arsenal ]</t>", {[player, player] call ace_arsenal_fnc_openBox}, 0, -85, false, true, "", ""]] call CBA_fnc_addPlayerAction;
enableSaving [false, false];
[["<t color='#ff0000'>[ Add tracers ]</t>", {[player, 20] spawn BIS_fnc_traceBullets;}, 0, -85, false, true, "", ""]] call CBA_fnc_addPlayerAction;
[["<t color='#ff0000'>[ Remove tracers ]</t>", {[player, 0] spawn BIS_fnc_traceBullets;}, 0, -85, false, true, "", ""]] call CBA_fnc_addPlayerAction;
};

diwako_dui_special_track = [shall,shall2,shall3,farted];

diwako_dui_special_track pushBack hank;
hank setVariable ["diwako_dui_radar_customIcon", "yes.paa"];
hank setVariable ["diwako_dui_nametags_customGroup", "Custom group name"];

[] spawn {
sleep 5;
[shall2] joinsilent (group player);
shall2 setVariable ["ACE_isEOD", 1, true];
sleep 5;
[shall2_1] joinsilent (group player);
sleep 5;
[shall2_2] joinsilent (group player);
};
Loading

0 comments on commit 91f1bd8

Please sign in to comment.