Tory Xiao 5 Posted September 22, 2021 I use these codes in initserver.sqf to add zeus editable objects: if (isServer) then { [] spawn { while {true} do { { _x addCuratorEditableObjects [ allPlayers, true ]; _x addCuratorEditableObjects [ vehicles, true ]; } count allCurators; sleep 30; }; }; }; But 'vehicles' also returned stuff that I didn't want like empty boxes. How do I add only driveable vehicles? Share this post Link to post Share on other sites
pierremgi 4840 Posted September 22, 2021 replace it by (vehicles select {toLowerANSI getText (configOf _x/"crew") isNotEqualTo "civilian"}) Share this post Link to post Share on other sites
Tory Xiao 5 Posted September 23, 2021 17 hours ago, pierremgi said: replace it by (vehicles select {toLowerANSI getText (configOf _x/"crew") isNotEqualTo "civilian"}) Thanks buddy you just saved my day Share this post Link to post Share on other sites