forked from KillahPotatoes/KP-Liberation
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v0.96.8-APR-UNSTABLE' into master
- Loading branch information
Showing
460 changed files
with
28,211 additions
and
15,656 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Launch game", | ||
"type": "shell", | ||
"command": "powershell -c '. ${workspaceFolder}/_tools/vscode/Run-Game.ps1'", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build" | ||
} | ||
}, | ||
{ | ||
"label": "Setup", | ||
"type": "shell", | ||
"command": "powershell -c '. ${workspaceFolder}/_tools/vscode/Invoke-Setup.ps1'", | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 9 additions & 3 deletions
12
Missionframework/KPLIB_debriefs.hpp → Missionframework/CfgDebriefing.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
/* | ||
File: KPLIB_debriefs.hpp | ||
File: CfgDebriefing.hpp | ||
Author: KP Liberation Dev Team - https://github.com/KillahPotatoes | ||
Date: 2020-05-09 | ||
Last Update: 2020-05-09 | ||
Last Update: 2020-05-10 | ||
License: MIT License - http://www.opensource.org/licenses/MIT | ||
Description: | ||
Debriefing defines for KP Liberation. | ||
*/ | ||
|
||
class End1 { | ||
title = $STR_SORRY; | ||
title = $STR_SORRY; | ||
subtitle = ""; | ||
description = $STR_COMMANDER_NOT_AUTHORIZED; | ||
pictureBackground = ""; | ||
}; | ||
class End2 { | ||
title = $STR_SORRY; | ||
subtitle = ""; | ||
description = $STR_CBA_IS_REQUIRED; | ||
pictureBackground = ""; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// Permettre aux joueurs de modifier leur distance de vue | ||
// Allow players to change their view distance | ||
GREUH_allow_viewdistance = true; | ||
|
||
// Permettre aux joueurs de modifier la qualité de l environnement | ||
// llow players to modify the quality of the environment | ||
GREUH_allow_worldquality = true; | ||
|
||
// Permettre aux joueurs de modifier leurs escouades | ||
// Allow players to modify their squads | ||
GREUH_allow_customsquads = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
_idact = -1; | ||
while { true } do { | ||
waitUntil{ sleep 0.3; alive player }; | ||
_idact = player addAction ["<t color='#FF8000'>" + localize "STR_GREUH_EXTENDED_OPTIONS_ACTIONMENU" + "</t>","GREUH\scripts\GREUH_dialog.sqf","",-1000,false,true]; | ||
waitUntil{ sleep 0.3; !alive player}; | ||
waitUntil{ sleep 0.3; alive player }; | ||
_idact = player addAction ["<t color='#FF8000'>" + localize "STR_GREUH_EXTENDED_OPTIONS_ACTIONMENU" + "</t>","GREUH\scripts\GREUH_dialog.sqf","",-1000,false,true]; | ||
waitUntil{ sleep 0.3; !alive player}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.