Go to file
Filip Maciejewski f6f07de9df
Merge pull request #542 from KillahPotatoes/v0.97S8-523
Build module - single item build, existing items movement
2018-11-29 15:42:17 +01:00
.github Issue template update 2018-01-05 11:37:50 +01:00
.vscode Merge branch 'v0.97S8' into V0.97S8-517 2018-11-27 22:18:13 +01:00
Missionbasefiles/kp_liberation.Altis Add variable and description for sub-commander 2018-11-18 18:36:55 +01:00
Missionframework Move fob build confirm to external method 2018-11-29 10:20:18 +01:00
docs Reupload of current state for #354 2018-04-24 06:24:04 +02:00
.editorconfig Added editorconfig file 2018-04-20 10:45:52 +02:00
.gitattributes :neckbeard: Added .gitattributes & .gitignore files 2017-03-06 10:50:17 +01:00
.gitignore Build script 2018-02-04 15:03:17 +01:00
CHANGELOG.md Update CHANGELOG.md 2018-11-27 18:28:11 +01:00
LICENSE Added: CHANGELOG.md and LICENSE 2018-04-23 08:41:37 +02:00
README.md Adjusted readme due to #508 2018-10-18 13:14:55 +02:00

README.md

KP Liberation

KP Liberation for ArmA 3

license GitHub release GitHub Release Date Github All Releases

GitHub issues GitHub closed issues GitHub pull requests GitHub closed pull requests

BI Forum Thread

Steam Workshop

Discord

This mission is a full rewrite of the original mission from GreuhZbug.

Original Liberation mission v0.924

If you like the work and think it's worth a small donation, feel free to use the following link:

Donate via paypal.me

REFACTORING BRANCH

!!Not meant to be used for playing at all!!

As we use ZenHub for our workflow instead of the GitHub project board, you need this addon to have a look at the complete workflow. But we're trying to keep the labels on issues etc. always up to date, so you can briefly follow the workflow also without ZenHub.

!TAKE ATTENTION TO THE LICENSE CHANGE FOR EVERYTHING IN THIS BRANCH!

This will replace the current missioncode when it's finished.

Goal

  • Modular and therefore much cleaner structure
  • More streamlined code
  • Performance improvements due to code optimizations
  • Easier ways to debug
  • Easier ways to add additional gameplay aspects due to the modular framework
  • There should be no need to do any additions in any mission.sqm (removing would be ok)
  • Personally: Using this project to get more familiar with SQF and the Liberation mission itself than before

Overview

The area has fallen to the enemy, and it is up to you to take it back. Embark on a persistent campaign with your teammates to liberate all the major cities of the area will most likely span several weeks of real time.

  • Experience a massive “Capture the Island” campaign involving a large range of different settlements across the entire area.
  • Cooperate with up to 34 players, including a Commanding role, two fire-team squads, a medevac and a logistical support squad as well as AI recruits to fill the gaps.
  • Purchase both infantry and both ground and air vehicles using three different types of physical resources; supplies, ammunition and fuel.
  • Build the FOB of your dreams with an in-game "what you see is what you get" system.
  • Play within an immersive engine that not only punishes you for civilian casualty but diversely reacts in turn.
  • Combat aggressive and cunning hostile forces who react and adapt to your actions.
  • Monitor and work alongside, or against, independent guerrilla forces.
  • Learn that every window is a threat thanks to the custom urban combat AI.
  • Accomplish meaningful secondary objectives that will benefit your progression.
  • Never lose your progress with the built-in server-side save system.

Needed Mods

Always required: CBA A3

These mods are needed if you want to use the prepackaged missionfiles from the release tab or Steam Workshop. You can play every map without any mods (only the maps themself) if you set the preset to custom in the file kp_liberation_config.

These mods are recommended by us, as they are likely to increase your gaming experience:

Also you should think about using these mods as serverside mods:

I recommend using the following difficulty settings for this mission (User profile of your server):

class CustomDifficulty
{
    class Options
    {
        groupIndicators=0;
        friendlyTags=0;
        enemyTags=0;
        detectedMines=0;
        commands=0;
        waypoints=0;
        weaponInfo=1;
        stanceIndicator=1;
        reducedDamage=0;
        staminaBar=0;
        weaponCrosshair=0;
        visionAid=0;
        thirdPersonView=0;
        cameraShake=1;
        scoreTable=0;
        deathMessages=0;
        vonID=1;
        mapContent=0;
        autoReport=0;
        multipleSaves=0;
        squadRadar=0;
        tacticalPing=0;
    };
    aiLevelPreset=1;
};

In the server config file:

forcedDifficulty = "custom";

class Missions
{
    class kp_liberation
    {
        template = "kp_liberation.Altis";
        difficulty = "custom";
    };
};

Media

Gameplay

License

Copyright (C) 2017 Killah Potatoes Gaming Community

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Short License Summary / Guideline

This small summary does not replace the license text or validity in any way.

  • If you use the mission code within your community on a non-public server and with no public access to the mission code then you can freely edit the mission code for this purpose. The only condition is that you keep the same license and the copyright notice (this readme) within your mission file.

  • If you want to edit the mission code and publish your derivative anywhere public or run a public server with an edited derivative of the original mission code, you are free to do so under these conditions:

    • Your edited mission code must be published under the same license, with the original copyright notice.
    • The source code of the mission must be visible to the public (via a Github repository for example). The link to this source code repository must be linked somewhere in the description/readme of the published derivative.
    • You must state every change you have made to the source code at this public repository (via the commit history of your Github repository for example).