mirror of
https://github.com/Fallingsheep1985/Arma3Epoch.git
synced 2024-08-30 16:42:12 +00:00
10 lines
308 B
Plaintext
10 lines
308 B
Plaintext
//Created by - Fallingsheep
|
|
//Special thanks - infistar for vehicle spawn code
|
|
_target = cursorTarget;
|
|
_isbike = _target typeof "ebike_epoch";
|
|
if (_isbike) then{
|
|
deleteVehicle _target;
|
|
player addMagazine "ItemScraps";
|
|
player addMagazine "VehicleRepair";
|
|
SystemChat "You packed the EBike.";
|
|
}; |