look at me here again lol Well I used this code in PM3 $item1 = Item::get(10, 0, 1); With a custom name and everything I used this same code in the public getItems function but it gave me an error in Item::get I was told that I change the give item can someone explain to me (I RESEARCHED BUT DIDN'T FIND ANYTHING ABOUT IT)
Use ItemFactory instead example : PHP: use pocketmine\item\ItemFactory;//get item$diamond = ItemFactory::getInstance()->get($id, $meta, $amount);//if you want to change the name just do like the old one$diamond->setCustomName($customname);