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

Chernarus CUP & RHS mission #61

Merged
merged 30 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0c6dba1
Add Winter Chernarus scenario
3Mydlo3 Jan 10, 2024
c24e010
Add all old assets
3Mydlo3 Jan 10, 2024
8756024
Add missing helipads, remove redundant boxes, attempt at jail fix
3Mydlo3 Jan 16, 2024
e9b92f4
Disable AF Mods Spectator (maybe this caused ACRE issues after respawn)
3Mydlo3 Jan 16, 2024
9792889
Remove legacy triggers and adjust UAV code
3Mydlo3 Jan 18, 2024
2928871
Fix missing quotes in description.ext
3Mydlo3 Jan 18, 2024
f4d0c09
Disable ACE Fatigue
3Mydlo3 Jan 18, 2024
fa30172
Disable nametags for civilians
3Mydlo3 Jan 18, 2024
be4c5b5
Fix markers
3Mydlo3 Jan 18, 2024
da70104
Fix mission title
3Mydlo3 Jan 25, 2024
e94d9a5
Remove headless and move stash modules to main folder
3Mydlo3 Jan 25, 2024
6aaf5bf
Add cba_settings_hasSettingsFile = 1 to description.ext
3Mydlo3 Jan 25, 2024
ace6b4b
Make flag function like in old gamemode (but with message for cops)
3Mydlo3 Jan 26, 2024
d605c93
Fix AFSK_jail_freeAll invocation
3Mydlo3 Jan 26, 2024
4757c81
Change default gear for cops
3Mydlo3 Jan 26, 2024
7dcd475
Delete preplaced starting boxes for killers
3Mydlo3 Jan 26, 2024
89c7c4b
Merge remote-tracking branch 'origin/master' into chernarus-mission
3Mydlo3 Jan 27, 2024
773e94c
Add welcome message
3Mydlo3 Jan 27, 2024
c038d6e
Add to CfgMissions
3Mydlo3 Jan 27, 2024
4e0fed1
Change prison to Renchon's one
3Mydlo3 Jan 28, 2024
e9dc02d
Drop all sounds from scenario
3Mydlo3 Jan 28, 2024
7952ab8
Replace - with _
3Mydlo3 Jan 28, 2024
2c0a436
Replace & with _
3Mydlo3 Jan 28, 2024
318d5bd
Properly disable AF Friendly Tracker
3Mydlo3 Jan 28, 2024
2c07e22
Move back accidentally moved images
3Mydlo3 Jan 29, 2024
fde1e8e
Fix version welcome message
3Mydlo3 Jan 29, 2024
432b02a
Remove AF stretchers
3Mydlo3 Feb 3, 2024
ddeba7f
Remove hospital markers
3Mydlo3 Feb 3, 2024
630d2ac
Fix Solnichny box being inside building
3Mydlo3 Feb 3, 2024
45bd90d
Merge remote-tracking branch 'origin/master' into chernarus-mission
3Mydlo3 Feb 14, 2024
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
6 changes: 3 additions & 3 deletions addons/markers/XEH_postInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if (isServer) then {
}];

// Check for AFM Friendly Tracker and auto disable it
if (EGVAR(common,AFM_Loaded)) then {
afm_friendly_tracker_enabled = false;
publicVariable "afm_friendly_tracker_enabled";
if (EGVAR(common,AFFT_Loaded)) then {
afft_friendly_tracker_enabled = false;
publicVariable "afft_friendly_tracker_enabled";
};
};

Expand Down
1 change: 1 addition & 0 deletions addons/missions/CfgMissions.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class CfgMissions {
class MPMissions {
MISSION_CONFIG(SerialKillers_CUP_RHS,Chernarus_Winter);
MISSION_CONFIG(SK_test,Malden);
};
};
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

// ACE Fatigue
force force ace_advanced_fatigue_enabled = false;

// AF Mods Spectator
force force afm_spectator_enabled = false;

// AF Friendly Tracker (BFT)
force force afft_friendly_tracker_enabled = false;

// DUI Nametags
force force diwako_dui_nametags_useSideIsFriendly = false;
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
cba_settings_hasSettingsFile = 1;

class Header
{
gameType = "SK";
minPlayers = 2;
maxPlayers = 24;
};

author = "3Mydlo3";
onLoadIntro = "ArmaForces SerialKillers Winter Edition";
onLoadMission = "Police obtained information that up to 4 well equipped killers want to wreak havoc on Chernarus. Their task is simple - stop the assassins as soon as possible.";
briefingName = "ArmaForces SerialKillers Winter Edition";

disabledAI = "true";
enableDebugConsole = 1;
respawn = 3;
respawnDelay = 20;
respawnOnStart = -1;
respawnTemplatesWest[] = {"MenuPosition", "Counter"};
respawnTemplatesEast[] = {"Base", "Counter"};
Loading