futurepasts Posted August 8, 2015 Share Posted August 8, 2015 Hello can anyone can show me example of picking up multiple items on the ground? Quote Link to comment Share on other sites More sharing options...
Apaec Posted August 8, 2015 Share Posted August 8, 2015 GroundItem g = groundItems.closest("Bones"); if (g != null && g.isVisible()) { g.interact("Take"); } 1 Quote Link to comment Share on other sites More sharing options...
Psvxe Posted August 8, 2015 Share Posted August 8, 2015 (edited) Make a Array? Or if you're making a looter grab the id's first and filter then ones you want, or don't want, depending on the list that's smaller. Edited August 8, 2015 by Psvxe Quote Link to comment Share on other sites More sharing options...