Skip to content

Commit

Permalink
fix: reduce unit count and add headless client support
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwynFr committed Aug 15, 2022
1 parent 45006f1 commit b669211
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ _this = createHashMap;

_this set ["_geo", [position markerEast, position markerTarget, 300] call GSRI_fnc_classSideGeo];
_this set ["_factories", [
[east, 88] call GSRI_fnc_classInfantryFactory,
[east, 4, "O_APC_Wheeled_02_rcws_v2_F"] call GSRI_fnc_classVehicleFactory,
[east, 2, "O_Heli_Light_02_dynamicLoadout_F"] call GSRI_fnc_classVehicleFactory
[east, 60] call GSRI_fnc_classInfantryFactory,
[east, 3, "O_APC_Wheeled_02_rcws_v2_F"] call GSRI_fnc_classVehicleFactory,
[east, 1, "O_Heli_Light_02_dynamicLoadout_F"] call GSRI_fnc_classVehicleFactory
]];

_this set ["+Reinforce", {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ _this = [] call GSRI_fnc_classEastManager;

_this set ["_geo", [position markerIndep, position markerTarget, 300] call GSRI_fnc_classSideGeo];
_this set ["_factories", [
[independent, 40] call GSRI_fnc_classInfantryFactory,
[independent, 4, "I_APC_tracked_03_cannon_F"] call GSRI_fnc_classVehicleFactory,
[independent, 2, "I_Heli_light_03_dynamicLoadout_F"] call GSRI_fnc_classVehicleFactory
[independent, 30] call GSRI_fnc_classInfantryFactory,
[independent, 3, "I_APC_tracked_03_cannon_F"] call GSRI_fnc_classVehicleFactory,
[independent, 1, "I_Heli_light_03_dynamicLoadout_F"] call GSRI_fnc_classVehicleFactory
]];

_this;
34 changes: 24 additions & 10 deletions CONT_Scorpion.Altis/mission.sqm
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ class EditorData
toggles=1;
class ItemIDProvider
{
nextID=9362;
nextID=9363;
};
class MarkerIDProvider
{
nextID=54;
};
class LayerIndexProvider
{
nextID=772;
nextID=793;
};
class Camera
{
pos[]={9712.1357,299.38809,15832.42};
dir[]={-0.1045262,-0.42248946,0.90032744};
up[]={-0.04872299,0.90636528,0.41967314};
aside[]={0.99333113,1.0834628e-007,0.11532383};
pos[]={1056.4797,42.493542,26940.324};
dir[]={0.0021796094,-0.64598799,0.76335162};
up[]={0.0018445214,0.76334518,0.64598942};
aside[]={1.0000024,9.3168637e-009,-0.0028553333};
};
};
binarizationWanted=0;
Expand Down Expand Up @@ -10198,7 +10198,7 @@ class Mission
};
class Entities
{
items=6;
items=7;
class Item0
{
dataType="Layer";
Expand Down Expand Up @@ -33007,7 +33007,7 @@ class Mission
name="marker_43";
type="group_4";
id=9317;
atlOffset=-11.528847;
atlOffset=-11.528854;
};
class Item2
{
Expand Down Expand Up @@ -33054,10 +33054,11 @@ class Mission
};
id=9348;
type="EmptyDetectorArea10x10";
atlOffset=-7.6293945e-006;
};
};
id=751;
atlOffset=54.780682;
atlOffset=54.780674;
};
class Item2
{
Expand Down Expand Up @@ -33130,7 +33131,7 @@ class Mission
position[]={10485.975,96.420242,17437.961};
name="marker_38";
type="mil_arrow2";
angle=195.62283;
angle=195.62282;
id=9315;
};
class Item2
Expand Down Expand Up @@ -33255,5 +33256,18 @@ class Mission
id=9350;
type="EmptyDetectorArea10x10";
};
class Item6
{
dataType="Logic";
class PositionInfo
{
position[]={1064.274,0,26985.045};
};
name="HC";
isPlayable=1;
id=9362;
type="HeadlessClient_F";
atlOffset=185.97;
};
};
};

0 comments on commit b669211

Please sign in to comment.