Skip to content

Planets and transition planes

LemADEC edited this page Jan 5, 2017 · 3 revisions

WarpDrive supports travelling to any others planets. Any dimension added by Vanilla or other mod is considered a planet provided there's a transition plane defined for it.

Transition planes are defined in the mod configuration file:

##########################################################################################################
# transitionplane
#--------------------------------------------------------------------------------------------------------#
# Transition planes defines which region in space allows to go to other dimensions, default is overworld with 100k radius.
# Each plane is square shaped and defined as a list of 7 integers (all measured in blocks, border is the radius from center)
##########################################################################################################

transitionplane {
    # this is the list of transition planes defined hereafter
    S:names <
        overworld
        moon
     >

    # dimensionId, dimensionCenterX, dimensionCenterZ, borderSizeX, borderSizeZ, SpaceCenterX, SpaceCenterZ
    I:overworld <
        0
        0
        0
        6000
        6000
        0
        0
     >
    I:moon <
        -28
        0
        0
        4000
        4000
        7000
        1000
     >
}

In this example, Overworld world border is 3k radius (6k diameter) centered around 0;0 in space, while the Galacticraft moon is 4k x 4k centered in space at 7000;1000. In other words, there's 2k of void space between both dimensions.

For a more visual help, check that google sheet which propose planet positions for AoA: https://docs.google.com/spreadsheets/d/11JG4dTQOPe95q5DGIgLOdS9PK6qNxMMJEamXtDwdFfQ

Note: this feature was added by LemADEC, hence it's only available in WorldWarMinecraft version of the mod for 1.6.4 (1.2.7.0) and later version for 1.7.10.

Clone this wiki locally