Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
GruppeW-Archiv
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Archiv
GruppeW-Archiv
Commits
00a4b1ce
Commit
00a4b1ce
authored
7 years ago
by
Mezilsa
Browse files
Options
Downloads
Patches
Plain Diff
Add new file
parent
dfcb827e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Workarrounds/mez_blackTaru.sqf
+37
-0
37 additions, 0 deletions
Workarrounds/mez_blackTaru.sqf
with
37 additions
and
0 deletions
Workarrounds/mez_blackTaru.sqf
0 → 100644
+
37
−
0
View file @
00a4b1ce
_csatContainer
=
AllmissionObjects
"Pod_Heli_Transport_04_base_F"
;
_csatContainerCrew
=
AllmissionObjects
"Pod_Heli_Transport_04_crewed_base_F"
;
{
_dir
=
getDir
_x
;
_pos
=
getPosATL
_x
;
deleteVehicle
_x
;
if
(
typeOf
_x
==
"Land_Pod_Heli_Transport_04_repair_F"
)
then
{
_blackbox
=
createVehicle
[
"Land_Pod_Heli_Transport_04_repair_black_F"
,
_pos
,
[],
0
,
"CAN_COLLIDE"
];
_blackbox
setDir
_dir
;
};
if
(
typeOf
_x
==
"Land_Pod_Heli_Transport_04_ammo_F"
)
then
{
_blackbox
=
createVehicle
[
"Land_Pod_Heli_Transport_04_ammo_black_F"
,
_pos
,
[],
0
,
"CAN_COLLIDE"
];
_blackbox
setDir
_dir
;
};
if
(
typeOf
_x
==
"Land_Pod_Heli_Transport_04_fuel_F"
)
then
{
_blackbox
=
createVehicle
[
"Land_Pod_Heli_Transport_04_fuel_black_F"
,
_pos
,
[],
0
,
"CAN_COLLIDE"
];
_blackbox
setDir
_dir
;
};
}
foreach
_csatContainer
;
{
_dir
=
getDir
_x
;
_pos
=
getPosATL
_x
;
deleteVehicle
_x
;
if
(
typeOf
_x
==
"Land_Pod_Heli_Transport_04_covered_F"
)
then
{
_blackbox
=
createVehicle
[
"Land_Pod_Heli_Transport_04_covered_black_F"
,
_pos
,
[],
0
,
"CAN_COLLIDE"
];
_blackbox
setDir
_dir
;
};
if
(
typeOf
_x
==
"Land_Pod_Heli_Transport_04_medevac_F"
)
then
{
_blackbox
=
createVehicle
[
"Land_Pod_Heli_Transport_04_medevac_black_F"
,
_pos
,
[],
0
,
"CAN_COLLIDE"
];
_blackbox
setDir
_dir
;
};
}
foreach
_csatContainerCrew
;
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment