-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from OverlordZorn/CSC-Rework
CSC Rework - Merge AirDrop and CSC System
- Loading branch information
Showing
48 changed files
with
1,076 additions
and
896 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Merge Version Bump | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
if_merged: | ||
name: Post_Merged | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@v4 | ||
- name: Setup HEMTT | ||
uses: arma-actions/hemtt@v1 | ||
- name: Run HEMTT build | ||
run: hemtt script update_2_patch | ||
- name: Commit to Repo | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git add . | ||
git commit -m "version Bump" | ||
git push |
File renamed without changes.
File renamed without changes.
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,55 @@ | ||
/* | ||
* Author: Zorn | ||
* This is purely an example | ||
* | ||
* Arguments: | ||
* | ||
* Return Value: | ||
* None | ||
* | ||
* Example: | ||
* ['something', player] call cvo_fnc_sth | ||
* | ||
* Public: Yes | ||
*/ | ||
|
||
// For testing purpose | ||
// ["Test"] call cvo_supplydrop_fnc_register; | ||
|
||
/* | ||
params [ | ||
["_entryName", "Default", [""] ], | ||
["_items", [], [[]] ], | ||
["_backpacks", [], [] ], | ||
["_hashMap", "404", [createHashMap] ], | ||
["_catName", "global", [""] ] | ||
]; | ||
*/ | ||
|
||
|
||
|
||
[ | ||
"ACE Medical Box", // Name | ||
[ | ||
["ace_banana", 69], | ||
["ace_suture", 69], | ||
["ACE_painkillers", 69] | ||
], // Array of Items to be filled into - Default: [] | ||
[ | ||
// ["somebackpackclassname", 420] | ||
], // Array of Backpacks to be filled into - Default: [] | ||
createHashMapFromArray [ | ||
["airdrop_pos_start", [10000,10000,1000]], | ||
["box_empty", false], | ||
["box_class", "ACE_medicalSupplyCrate_advanced"], | ||
["airframe_class", "B_T_VTOL_01_vehicle_F"], | ||
["normal_mode", "AIRDROP"], | ||
["airdrop_targetMode", "TARGET"] | ||
|
||
|
||
|
||
] // Hashmap of additional parameters that can be changed optionally | ||
] call cvo_csc_fnc_register; | ||
|
||
["B_Slingload_01_Ammo_F", "ACE Medical Box"] call cvo_csc_fnc_link; | ||
[source, "ACE Medical Box"] call cvo_csc_fnc_link; |
Binary file not shown.
File renamed without changes.
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
File renamed without changes.
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
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.