1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Clearing Dropped Items

Discussion in 'Facepalm' started by Haxley, May 1, 2017.

  1. Haxley

    Haxley Creeper

    Messages:
    3
    Is there code to clear items that are dropped on the ground?
     
  2. Lowkey

    Lowkey Slime

    Messages:
    94
  3. Haxley

    Haxley Creeper

    Messages:
    3
    Thank you! I concocted something after looking at that, and it works!
    PHP:
     foreach($this->HGApi->getServer()->getLevels() as $level) {
                    foreach(
    $level->getEntities() as $entity) {
                        if (!(
    $entity instanceof Creature)){
                            
    $entity->close();
                        }
                    }
                }
     
  4. Lowkey

    Lowkey Slime

    Messages:
    94
    always happy to help :)
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.