-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
138 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
_unit = _this select 0; | ||
_groupThis = group _unit; | ||
|
||
if (isServer) then | ||
{ | ||
private ["_group", "_leader", "_data"]; | ||
_group = group _unit; | ||
_leader = leader _group; | ||
_data = ["grad_foxtrot", "Foxtrot", false]; // [<Insignia>, <Group Name>, <Private>] | ||
|
||
["RegisterGroup", [_group, _leader, _data]] call BIS_fnc_dynamicGroups; | ||
// {[[ _x, "GRAD_delta"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;sleep 0.1;} forEach units _group; | ||
}; |
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,13 @@ | ||
_unit = _this select 0; | ||
_groupThis = group _unit; | ||
|
||
if (isServer) then | ||
{ | ||
private ["_group", "_leader", "_data"]; | ||
_group = group _unit; | ||
_leader = leader _group; | ||
_data = ["grad_golf", "Golf", false]; // [<Insignia>, <Group Name>, <Private>] | ||
|
||
["RegisterGroup", [_group, _leader, _data]] call BIS_fnc_dynamicGroups; | ||
// {[[ _x, "GRAD_delta"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;sleep 0.1;} forEach units _group; | ||
}; |
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,13 @@ | ||
_unit = _this select 0; | ||
_groupThis = group _unit; | ||
|
||
if (isServer) then | ||
{ | ||
private ["_group", "_leader", "_data"]; | ||
_group = group _unit; | ||
_leader = leader _group; | ||
_data = ["grad_hotel", "Hotel", false]; // [<Insignia>, <Group Name>, <Private>] | ||
|
||
["RegisterGroup", [_group, _leader, _data]] call BIS_fnc_dynamicGroups; | ||
// {[[ _x, "GRAD_delta"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;sleep 0.1;} forEach units _group; | ||
}; |
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,13 @@ | ||
_unit = _this select 0; | ||
_groupThis = group _unit; | ||
|
||
if (isServer) then | ||
{ | ||
private ["_group", "_leader", "_data"]; | ||
_group = group _unit; | ||
_leader = leader _group; | ||
_data = ["grad_india", "India", false]; // [<Insignia>, <Group Name>, <Private>] | ||
|
||
["RegisterGroup", [_group, _leader, _data]] call BIS_fnc_dynamicGroups; | ||
// {[[ _x, "GRAD_delta"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;sleep 0.1;} forEach units _group; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
assembleAssaultBoat = { | ||
_crate = _this select 0; | ||
_pos = getPos _crate; | ||
deleteVehicle _crate; | ||
|
||
_boat = createVehicle ["B_Boat_Transport_01_F", _pos, [], 0, "NONE"]; | ||
// [_boat, true, [0,1.1,0.092], 180] call ace_dragging_fnc_setDraggable; | ||
}; |
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