Get item or entity display name procedures putting brackets

Started by CyncWolf on

Topic category: Help with modding (Java Edition)

Last seen on 03:20, 3. Jul 2023
Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Get item or entity display name procedures putting brackets

I have troubles using the get display name of entity or item procedures, when i use the text i get from these procedures the name are between brackets, and I wouldn't want that, is there another way than taking the text and removing the brackets with the replace procedure ?

Last seen on 19:20, 25. Jun 2023
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I believe you could probably…
Mon, 05/01/2023 - 00:25

I believe you could probably just do this 

Replace "{" with "" (empty string) on: whatever
Replace "}" with "" on: whatever
Last seen on 14:47, 18. Apr 2024
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Use Substring Procedure…
Tue, 05/02/2023 - 15:23

Use Substring Procedure Block.

Set from Position to 1 and to Position to length of get Display Name - 1