futurepasts Posted August 8, 2015 Posted August 8, 2015 Hello can anyone can show me example of picking up multiple items on the ground?
Apaec Posted August 8, 2015 Posted August 8, 2015 GroundItem g = groundItems.closest("Bones"); if (g != null && g.isVisible()) { g.interact("Take"); } 1
Psvxe Posted August 8, 2015 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