Started by
God_Oh_War
on
Topic category: Troubleshooting, bugs, and solutions
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 you want to generate something with say 30 % chance, do if random < 0.3
Ok thanks, didn't know this lol. I thought it was random between a 1 or 0