Console keeps saying Error: Item does not exist

Started by Pokealamine on

Topic category: Help with MCreator software

Joined Apr 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Console keeps saying Error: Item does not exist
Mon, 07/03/2023 - 22:08 (edited)

I'm trying to add a new class of tool type so that I can make a multitool with its own class.

 

Images with the problem:

https://imgur.com/a/Rxcbk92

 

 

 

 

 

 

 

 

 

 

 

 

Edited by Pokealamine on Mon, 07/03/2023 - 22:08
Joined Nov 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I see that "Item.Properties"…
Wed, 07/05/2023 - 03:44

I see that "Item.Properties" is already imported, which means that the identifier name will be "Properties". My guess is that you used to be just importing "Item", which let you access "Properties" though "Item.Properties". Unfortunately, ".Properties" was added to the end of the import, which means you can no longer access the rest of "Item".

Try changing "Item.Properties" (on line 31) to just "Properties".