Hey guys is it possible to put an object in the editor and make it pickable?
Hey guys is it possible to put an object in the editor and make it pickable?
There was an addon with books, folders, money, drugs, and some other pickable objects. Can't remember the name of it though
yes,
myObject addAction["Gonna Pick You Up!", "pickup.sqf"];
pickup,sqf
you can get more elaborate with it, check the biki for addAction and how to implement it:Code:_object = _this select 0; _id = _this select 2; deleteVehicle _object; // or add it to players gear (like evMoscow, evMoney, etc) _object removeAction _id;
http://community.bistudio.com/wiki/addAction