Так что я пытаюсь сделать что-то похожее на алмазную нагрудник в вашем инвентаре, и если он сможет найти алмазную нагрудник, он сохранит ячейку найденного алмазного нагрудника в переменной.
Как здесь пример, как мне это сделать? с использованием методов и средств майнкрафт
int DiamondChestplateSlot;
int SlotCounter = 9;
public void onUpdate() {
while (SlotCounter < 36) {
//Check if the SlotCounter slot contains diamond chestplate
//if it does then do this code
DiamondChestplateSlot = //The Slot where it was found in the player's inventory
break;
// if diamond chestplate isnt found in the slot of the current SlotCounter
SlotCounter++;
}
}