Freddywall 11 Posted October 5, 2019 Hello, need a script to delete all vehicles from map every 2 minutes Share this post Link to post Share on other sites
Janez 534 Posted October 5, 2019 I've seen quite a few of them since Arma 3 release, I'm pretty sure I used this one by @davidoss. 3den editor has some native options for corpses and vehicles as well iirc. But really dude, use search function either here on forums or using your favorite search engine. It's real easy, for starters type: Arma 3 plus <whatever else you need> and hit enter. 2 Share this post Link to post Share on other sites
wogz187 1086 Posted October 5, 2019 @Freddywall There's more to consider than just deleting vehicles every two minutes. For example, are we deleting the occupants, too? Post more info about exactly what we're trying to accomplish.@Janez, Quote ...for starters type: Arma 3 plus <whatever else you need> and hit enter. It can be a lot like looking a word up in the dictionary. If you think "Phosphor" begins with an "F" you'll never find it. Knowing what you're looking for can be a greater challenge than finding it. GOM calls it research kung-fu or something like that. We begin to take this skill for granted after a while. Have fun! 1 2 Share this post Link to post Share on other sites
Janez 534 Posted October 5, 2019 1 hour ago, wogz187 said: It can be a lot like looking a word up in the dictionary. If you think "Phosphor" begins with an "F" you'll never find it. Knowing what you're looking for can be a greater challenge than finding it. GOM calls it research kung-fu or something like that. We begin to take this skill for granted after a while. That one really isn't that difficult but I hear you. I suppose I was feeling a bit grumpy myself after reading OP. 🙂 Regardless, first part of your post is to be focused on, there is more to consider. 2 Share this post Link to post Share on other sites
dave_beastttt 135 Posted October 5, 2019 while {alive player} do { { if (!(count (crew _x) > 0) && {_x isKindOf 'Air' || {_x isKindOf 'LandVehicle'} || {_x isKindOf 'Ship'}}) then { diag_log _x; deleteVehicle _x; }; } forEach vehicles; uiSleep 240; }; 3 Share this post Link to post Share on other sites
GEORGE FLOROS GR 4207 Posted October 5, 2019 7 hours ago, Freddywall said: Hello, need a script to delete all vehicles from map every 2 minutes You have already a topic about it , also as Janez said , you should make a simple search first. 2 Share this post Link to post Share on other sites