Arma3Epoch/MPMissions/epoch.Altis/deploy/packbike.sqf
2015-02-19 11:55:57 +11:00

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.";
};