Skip to content

Commit

Permalink
v0.96.4
Browse files Browse the repository at this point in the history
0.96 (legacy) - Global Mobilization DLC Support
  • Loading branch information
Wyqer authored May 10, 2019
2 parents db38cde + 27b9dc8 commit 2dc8e18
Show file tree
Hide file tree
Showing 120 changed files with 77,495 additions and 1,217 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 2
jobs:
pack:
docker:
- image: circleci/node
steps:
- checkout
- run:
name: Install dependencies
command: npm install --loglevel=error
working_directory: ~/project/_tools
- run:
name: Pack PBOs
command: npx gulp
working_directory: ~/project/_tools
- store_artifacts:
path: ~/project/_tools/build/pbo
destination: 'KP-Liberation'
validate:
docker:
- image: circleci/python
steps:
- checkout
- run:
name: Install SQFLint
command: sudo pip install sqflint
- run:
name: Validate SQF
command: sqflint -d Missionframework
workflows:
version: 2
build:
jobs:
- pack
- validate
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

109 changes: 13 additions & 96 deletions Missionbasefiles/kp_liberation.Altis/mission.sqm
Original file line number Diff line number Diff line change
Expand Up @@ -138,53 +138,12 @@ class ScenarioData
{
gameType="CTI";
minPlayers=1;
maxPlayers=34;
maxPlayers=37;
};
};
class CustomAttributes
{
class Category0
{
name="Multiplayer";
class Attribute0
{
property="RespawnTemplates";
expression="true";
class Value
{
class data
{
class type
{
type[]=
{
"ARRAY"
};
};
class value
{
items=1;
class Item0
{
class data
{
class type
{
type[]=
{
"STRING"
};
};
value="Counter";
};
};
};
};
};
};
nAttributes=1;
};
class Category1
{
name="Scenario";
class Attribute0
Expand All @@ -209,74 +168,32 @@ class CustomAttributes
nAttributes=1;
};
};
class Intro
class Mission
{
class Intel
{
briefingName="@STR_MISSION_TITLE";
overviewText="@STR_MISSION_DESCRIPTION";
resistanceEast=1;
timeOfChanges=1800.0002;
startWeather=0.30000001;
startWeather=0.40000001;
startWind=0.1;
startWaves=0.1;
forecastWeather=0.30000001;
forecastWeather=0.40000001;
forecastWind=0.1;
forecastWaves=0.1;
forecastLightnings=0.1;
year=2035;
month=6;
day=24;
hour=12;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
};
};
class Mission
{
class Intel
{
briefingName="@STR_MISSION_TITLE";
overviewText="@STR_MISSION_DESCRIPTION";
resistanceWest=0;
resistanceEast=1;
timeOfChanges=28800;
startWeather=0.39999998;
startWind=0.099999994;
startWaves=0.099999994;
forecastWeather=0.39999998;
forecastWind=0.099999994;
forecastWaves=0.099999994;
forecastLightnings=0.099999994;
rainForced=1;
lightningsForced=1;
wavesForced=1;
windForced=1;
year=2038;
month=6;
day=6;
hour=8;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
class CustomAttributes
{
name="Intel";
class Attribute0
{
property="Enh_disableGrass";
expression="if (((parseNumber _value) > 0) && !is3DEN) then {setTerrainGrid (parseNumber _value)}";
class Value
{
class data
{
class type
{
type[]=
{
"STRING"
};
};
value="-1";
};
};
};
nAttributes=1;
};
startFogDecay=0.014;
forecastFogDecay=0.014;
};
class Entities
{
Expand Down
68 changes: 15 additions & 53 deletions Missionbasefiles/kp_liberation.Chernarus/mission.sqm
Original file line number Diff line number Diff line change
Expand Up @@ -179,53 +179,12 @@ class ScenarioData
{
gameType="CTI";
minPlayers=1;
maxPlayers=34;
maxPlayers=37;
};
};
class CustomAttributes
{
class Category0
{
name="Multiplayer";
class Attribute0
{
property="RespawnTemplates";
expression="true";
class Value
{
class data
{
class type
{
type[]=
{
"ARRAY"
};
};
class value
{
items=1;
class Item0
{
class data
{
class type
{
type[]=
{
"STRING"
};
};
value="Counter";
};
};
};
};
};
};
nAttributes=1;
};
class Category1
{
name="Scenario";
class Attribute0
Expand Down Expand Up @@ -256,23 +215,26 @@ class Mission
{
briefingName="@STR_MISSION_TITLE";
overviewText="@STR_MISSION_DESCRIPTION";
resistanceWest=0;
resistanceEast=1;
timeOfChanges=28800;
startWeather=0.39999998;
startWind=0.099999994;
startWaves=0.099999994;
forecastWeather=0.39999998;
forecastWind=0.099999994;
forecastWaves=0.099999994;
forecastLightnings=0.099999994;
timeOfChanges=1800.0002;
startWeather=0.40000001;
startWind=0.1;
startWaves=0.1;
forecastWeather=0.40000001;
forecastWind=0.1;
forecastWaves=0.1;
forecastLightnings=0.1;
rainForced=1;
lightningsForced=1;
wavesForced=1;
windForced=1;
year=2038;
month=6;
day=6;
hour=8;
minute=0;
startFogDecay=0.013;
forecastFogDecay=0.013;
startFogDecay=0.014;
forecastFogDecay=0.014;
};
class Entities
{
Expand Down
Loading

0 comments on commit 2dc8e18

Please sign in to comment.