Hi guys! creeperbot65 here!
I'm having problems with my code... It's supposed to make a small terrain thing, but the cubes won't appear!
Here's the code:
<Loop until="terrain_z" eq="500">
<Cube collision="1" static="1" y="0" z="0" scaleX="1" scaleZ="1" texture="Material1" scaleV="1" scaleY="1" x="0" scaleU="1" visible="1">
<Set var="x" value="terrain_x"/>
<Set var="z" value="terrain_z"/>
</Cube>
<If var="terrain_x" eq="500">
<Set var="terrain_x" value="0"/>
<Increment var="terrain_z" value="50"/>
</If>
<Increment var="terrain_x" value="50"/>
</Loop>
Please help me!