Last active
April 16, 2019 13:23
-
-
Save rlex/7dab4ad5eec37a67c161 to your computer and use it in GitHub Desktop.
airdrop anything in arma3
This file contains hidden or 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
_target = player; | |
_location = getpos _target; | |
_airdrop = "B_supplyCrate_F" createVehicle _location; | |
_airdrop setPos [_location select 0, _location select 1, 100]; | |
_airdrop setDir (random 360); | |
[objnull, _ammodrop] call BIS_fnc_curatorobjectedited; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment