I what to know how to check if comething is in slot 3 of a players inventory so I can do I tried if($item->getSlot() === 1){ but it didn't work pls help me
Item::getSlot() is not a method that exists in PocketMine. try this: PHP: if($player->getInventory()->getSlot(2)->getId() === Block::STONE) { //code here}