Structures are getting cut off at chunk lines, and the random code doesn't work properly

Started by God_Oh_War on

Topic category: Troubleshooting, bugs, and solutions

Last seen on 19:57, 9. Jan 2021
Joined Apr 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Structures are getting cut off at chunk lines, and the random code doesn't work properly

For some reason, at the chunk lines part of my structure get cut off... I am trying to generate an RNG castle, that has a giant outline and a randomized inside, but at every chunkline a large section is cut off... Solution?

Also, on a related note, the random code line:
(If: [Random {1,0}] = {1}
[place {X} {Y} {Z} Structure: {cmiddle1}]

else:

[place {X} {Y} {Z} Structure: {cmiddle2}]

that code line will always generate the first one no matter what for me....

Random will never be 1, if…
Mon, 11/23/2020 - 07:53

Random will never be 1, if you want to generate something with say 30 % chance, do if random < 0.3

Last seen on 19:57, 9. Jan 2021
Joined Apr 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Ok thanks, didn't know this…
Mon, 11/23/2020 - 08:42

Ok thanks, didn't know this lol. I thought it was random between a 1 or 0