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

Solved Remove Dropped item

Discussion in 'Development' started by Herojhjh, Feb 3, 2018.

  1. Herojhjh

    Herojhjh Silverfish

    Messages:
    20
    GitHub:
    herojhjh
    I want to remove dropped item in my server, but when i try the code, its kill all entity in the server. Need help
     
  2. armagadon159753

    armagadon159753 Zombie

    Messages:
    217
    GitHub:
    armagadon159753
  3. Herojhjh

    Herojhjh Silverfish

    Messages:
    20
    GitHub:
    herojhjh
    just item entity
     
  4. armagadon159753

    armagadon159753 Zombie

    Messages:
    217
    GitHub:
    armagadon159753
    Item is not an Entity juste check if is not a Creature
    PHP:
    foreach($this->getServer()->getLevels() as $level){
    foreach(
    $level->getEntities() as $entity){
    if(!(
    $entity instanceof Creature)){//check if is this not a Creature
    $entity->close();
    }
    }
    }
     
    xXNiceAssassinlo YT likes this.
  5. Herojhjh

    Herojhjh Silverfish

    Messages:
    20
    GitHub:
    herojhjh
    sory if forgot !
     
  6. armagadon159753

    armagadon159753 Zombie

    Messages:
    217
    GitHub:
    armagadon159753
    Always happy to help :D
     
    xXNiceAssassinlo YT likes this.
  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.