CyDoNgr 28 Posted October 25, 2016 I have placed on the map a building from the props section. Is there any way to re-spawn it at it's position and destroy the wreck if its destroyed, like with vehicles?Thx! Share this post Link to post Share on other sites
davidoss 552 Posted October 25, 2016 Of course it is. 1 Share this post Link to post Share on other sites
ArmaMan360 94 Posted October 25, 2016 Of course it is. lol help him man :P Share this post Link to post Share on other sites
CyDoNgr 28 Posted October 31, 2016 Of course it is. thx gamo ti manula su bro! Share this post Link to post Share on other sites
M1ke_SK 230 Posted November 1, 2016 You put this in init field of object null = [this] execVM "object.sqf"; object.sqf params ["_object"]; _pos = getPos _object; _dir = getDir _object; _class = typeOf _object; while { true } do { deleteVehicle _object; _object = createVehicle [_class, _pos, [], 0, "NONE"]; _object setDir _dir; waitUntil { sleep 1; !alive _object }; sleep 60; }; I did not include object orientation in 3D dimension (yawn, pitch, ...). I am using this technique for my vehicles to respawn. 2 Share this post Link to post Share on other sites