# Define the structure type.
# The structure type defines how the individual components will be placed.
# Valid values:
# - piece: freeform 3d structure
# - village: generates a road network on the surface and places components off to the sides
type: piece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java -Xmx13G -Xms13G -XX:+UseG1GC -Dsun.rmi.dgc.server.gcInterval=2147483646 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:TargetSurvivorRatio=90 -XX:MaxGCPauseMillis=50 -XX:G1NewSizePercent=40 -XX:G1HeapRegionSize=32M -XX:G1MaxNewSizePercent=60 -XX:InitiatingHeapOccupancyPercent=25 -XX:G1MixedGCLiveThresholdPercent=50 -XX:+AggressiveOpts -XX:+AlwaysPreTouch -XX:+UseLargePagesInMetaspace -jar forge-1.12.2-14.23.1.2556-universal.jar nogui |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "main.h" | |
| volatile int frame = 0; | |
| void vblank() { | |
| frame++; | |
| } | |
| int main() { | |
| touchPosition touchXY; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GenLayerIsland | |
| | | |
| GenLayerFuzzyZoom | |
| | | |
| GenLayerAddIsland | |
| | | |
| GenLayerZoom | |
| | | |
| GenLayerAddIsland | |
| | |
This guide assumes you already have a functional Minecraft Forge server with Cubic Chunks set up and running.
When editing configuration files, make sure to save the file before proceeding to the next step!
Before you begin: it is absolutely critical that you remove all client-side required mods from your server (aside from Cubic Chunks) so that a player with nothing other than Minecraft Forge and Cubic Chunks installed can join the server. If additional mods are required, vanilla players will not be able to connect!
- Download the latest version of Cubic Chunks from Jenkins. You want
CubicChunks-<version>-SNAPSHOT-all.jar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "biome": "minecraft:hell", | |
| "bounds": { | |
| "minX": 5, | |
| "maxX": 50, | |
| "minZ": 5, | |
| "maxZ": 50 | |
| }, | |
| "priority": 100.0 |
I hereby claim:
- I am damatrix on github.
- I am daporkchop_ (https://keybase.io/daporkchop_) on keybase.
- I have a public key ASCmfvyVY7B8B7BGYCBqrUukD_45Ws6xU_nBAx3v_smBdAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| shopt -s extglob | |
| NEWLINE=$'\n' | |
| ANSI_ERASE_ENTIRE_SCREEN=$'\e[2J' | |
| ANSI_RESET_CURSOR_POSITION=$'\e[H' | |
| ANSI_CLEAR="${ANSI_ERASE_ENTIRE_SCREEN}${ANSI_RESET_CURSOR_POSITION}" | |
| die() { |
