Skip to content

Commit

Permalink
not sure what's in here tbh, I should have kept git updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Nels0 committed Oct 25, 2017
1 parent f387e7f commit 052449d
Show file tree
Hide file tree
Showing 54 changed files with 605 additions and 3,161 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ Temporary Items
.apdisk


test.txt
test.txt


*.pbo
6 changes: 3 additions & 3 deletions MP_ZGM_160.Altis/160_ace_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ace_common_forceAllSettings {
force = 1;
};
class ace_common_checkPBOsAction {
value = 0;
value = 1;
typeName = "SCALAR";
force = 1;
};
Expand All @@ -20,7 +20,7 @@ class ace_common_checkPBOsCheckAll {
force = 1;
};
class ace_common_checkPBOsWhitelist {
value = "";
value = "["sa_advancedtowing","sa_advancedslingloading","cz75_nochain","headrangeplus","ar_advancedrappelling","ASM","ares","marmadebug","jsrs_environment","viewdistance_taw"]";
typeName = "STRING";
force = 1;
};
Expand Down Expand Up @@ -255,7 +255,7 @@ class ace_medical_playerDamageThreshold {
force = 1;
};
class ace_medical_AIDamageThreshold {
value = 1;
value = 1.8;
typeName = "SCALAR";
force = 1;
};
Expand Down
29 changes: 27 additions & 2 deletions MP_ZGM_160.Altis/description.ext
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#ifndef _SUB
//--- Unique for every mission variant
onLoadName = "160th Zeus";
overviewPicture = "160thSOR\data\160th.paa";
//overviewPicture = "160thSOR\data\160th.paa";
#endif

dev = "Nelso - adapted from Karel";
author = "160th Operations - Nels0";
//onLoadMission = "";
overviewText = "Play in a scenario all designed by the Zeus";
overviewText = "Play a scenario designed your Zeus";
overviewTextLocked = "";

respawn = 2;
Expand Down Expand Up @@ -40,6 +40,31 @@ class Params{
texts[] = {$STR_DISABLED,$STR_ENABLED};
default = 1;
};
#ifndef GUERFRIENDLY_DEFAULT
#define GUERFRIENDLY_DEFAULT -1
#endif

class GuerFriendly
{
title = "INDFOR Alliance";
values[] = {-1,1,0,2};
texts[] = {
$STR_DISP_INTEL_NONE_FRIENDLY,
$STR_DISP_INTEL_WEST_FRIENDLY,
$STR_DISP_INTEL_EAST_FRIENDLY,
$STR_DISP_INTEL_BOTH_FRIENDLY
};
default = GUERFRIENDLY_DEFAULT;
function = "BIS_fnc_paramGuerFriendly";
};
class ViewDistance
{
title = "View distance (in metres)";
values[] = {500,1000,2000,5000};
// When 'texts' are missing, values will be displayed directly instead
default = 1000;
file = "setViewDistance.sqf"; // (Optional) Script [[call]]ed when player joins, selected value is passed as an argument
};
};

/*
Expand Down
8 changes: 0 additions & 8 deletions MP_ZGM_160.Altis/initServer.ext

This file was deleted.

10 changes: 10 additions & 0 deletions MP_ZGM_160.Altis/initplayerserver.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
if (!isnull (getassignedcuratorunit _x)) then {
_unit = getassignedcuratorunit _x;
if (isnull (getassignedcuratorlogic _unit)) then {
unassignCurator _x;
sleep 1;
_unit assignCurator _x;
};
};
} foreach allcurators;
Loading

0 comments on commit 052449d

Please sign in to comment.