WurschtBanane 11 Posted September 9, 2016 How do i make wrecks dissapear after say 1 minute, like in King of the Hill? Share this post Link to post Share on other sites
veles-zv 176 Posted September 9, 2016 How do i make wrecks dissapear after say 1 minute, like in King of the Hill? did you try garbage collector... Share this post Link to post Share on other sites
WurschtBanane 11 Posted September 9, 2016 did you try garbage collector... I tried it, it does not seem to work for script-spawned vehicles... Share this post Link to post Share on other sites
WurschtBanane 11 Posted September 16, 2016 figured it out by now, its a simple cleanup script that i use. Share this post Link to post Share on other sites
killerwin 0 Posted September 27, 2016 For those finding this thread in the future, since OP didn't say how he solved it: Add to Description.ext wreckLimit = 1; wreckRemovalMinTime = 60; //seconds wreckRemovalMaxTime = 60; //seconds wreckLimit: Limit of total wrecks at any time. wreckRemovalMinTime: Remove all wrecks that have existed longer than this when wreckLimit is breached. wreckRemovalMaxTime: Maximum time a wreck can remain on the ground even when wreckLimit has not been reached. https://community.bistudio.com/wiki/Description.ext Share this post Link to post Share on other sites