generate blocks with random coordinates

Started by Jose4T5Y on

Topic category: Help with MCreator software

Last seen on 14:30, 11. Feb 2024
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
generate blocks with random coordinates
Wed, 07/07/2021 - 21:33 (edited)

Does it help to procedures make a block that is naturally generated at, x random ,  y 130 , z random  ? how could i do it

Edited by Jose4T5Y on Wed, 07/07/2021 - 21:33
Last seen on 09:42, 5. Sep 2023
Joined May 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Go to templates in…
Fri, 07/09/2021 - 08:52

Go to templates in procedures and you will see one for random 0.7 which = 70%

Last seen on 14:30, 11. Feb 2024
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks, but how could i make…
Fri, 07/09/2021 - 13:29
thanks, but how could i make x: random, y: 140 z: random
Last seen on 14:30, 11. Feb 2024
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
¿?  
Fri, 07/09/2021 - 13:30

¿?

 

The random procedure…
Sat, 07/10/2021 - 09:47

The random procedure generates numbers between 0 and 1. Subtract 0.5 so that you get negative values and multiply it by 2. Now multiply that number with the max coordinate you want your blocks to spawn. Now repeat the process for both coordinates.

Last seen on 14:30, 11. Feb 2024
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How could I do that? I don't…
Sat, 07/10/2021 - 13:24
How could I do that? I don't know how to do it? help
Last seen on 14:30, 11. Feb 2024
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks, it seems I found…
Mon, 07/12/2021 - 13:22
thanks, it seems I found what you need