-- BOLDLY GO WHERE NO MAN HAS GONE BEFORE / NO INVISIBLE WALLS local ids = {} local hIn = io.open( "trainer/assets/idstring_lookup.txt", "r" ) for line in hIn:lines() do local id = tostring( Idstring( line ):key() ) ids[ id ] = line end for _, unit in ipairs( World:find_units_quick( "all", 1 ) ) do local id = tostring( unit:name():key() ) if string.find( ids[ id ], "collision") then unit:set_slot( 0 ) end end