(SOLVED BY ME) Hey, so I need help with commands.

Started by Peteypops13 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Oct 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
(SOLVED BY ME) Hey, so I need help with commands.

So I'm making a command which spawns an ore when ran. This is how it looks:

/Spawnore

 

Command Entry Point
[Literal Parameter "type"
 [Literal Parameter "ruby"
  [Literal Parameter "depth"
   [Literal Parameter "stone"
   Call Procedure "SpawnRubyOre"
   ]
   [Literal Parameter "deepslate"
   Call Procedure "SpawnDeepRubyOre"
   ]
  ]
 ]
 [Literal Parameter "topaz"
  [Literal Parameter "depth"
   [Literal Parameter "stone"
   Call Procedure "SpawnTopazOre"
   ]
   [Literal Parameter "deepslate"
   Call Procedure "SpawnDeepTopazOre"
   ]
  ]
 ]
 [Literal Parameter "sapphire"
  [Literal Parameter "depth"
   [Literal Parameter "stone"
   Call Procedure "SpawnSapphireOre"
...

And then, this is the basic procedure.

"Event trigger: Triggered by external call"

or when (global trigger) Command Executed

Place Ruby ore at X Y Z

 

But it spawns on every command, not just /spawnore.

any way to fix????

Joined Oct 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
JUST figured it out lol It's…
Sat, 03/29/2025 - 08:46

JUST figured it out lol

It's ADDITIONAL trigger, so I just remove it, and it works.

Sorry for wasting time, but life lesson for future mods i guess.