Multiple Item Detecting

Started by SackboyGamerYT on

Topic category: Help with Minecraft modding (Java Edition)

Active 8 years ago
Joined Sep 2016
Points:
762

User statistics:

  • Modifications: 0
  • Forum topics: 5
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 72
Multiple Item Detecting

Hi Everyone! How are you lot today? :)

I have been making a Mod, and i need to make a Event that detects more than 1 of the same item.

but there is no option for that in Conditions.

does someone know a substitute to it?

Active 1 year ago
Joined Aug 2013
Points:
1162

User statistics:

  • Modifications: 4
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 737
I recommend you make a for
Mon, 11/14/2016 - 21:41

I recommend you make a for loop , that will iterate through players inventory and if it the item in the slot is equal to yours , use stackSize variable and check for the ItemStack size.

Something like:

for (ItemStack s : entity.inventory.mainInventory) {
        if (s != null && s.getItem() == YOUR_ITEM) {
           if(s.stackSize > 16){
            

         }
        }
    }

Active 8 years ago
Joined Sep 2016
Points:
762

User statistics:

  • Modifications: 0
  • Forum topics: 5
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 72
RE:I recommend you make a for
Fri, 11/25/2016 - 14:52

@#1

where do you put that?

Active 10 months ago
Joined Dec 2019
Points:
702

User statistics:

  • Modifications: 1
  • Forum topics: 5
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 84
Propably in custom code.
Wed, 04/08/2020 - 13:43

Propably in custom code.