configuration/config.yml

Config file

Explication

debug: false
    <boolean> set true to enable debugging mode with additinal output to the console

max-speed: 12
    <int> defines the maximum movement speed of minecarts in blocks/second

tool-item: 271
    <int> id of the item used for routingblock creation/updating/info viewing

sign-radius: 3
    <int> radius from routingblock in every direction to search for signs

sign-can-define-type: false
    <boolean> allow placement of signs beneath a routingblock to define the type by writing [type] and the titel of the routingblock

slow-when-empty: false
    <boolean> should minecarts slow down faster when they are empty?

routingblocks:
- title: Booster
      <String> the name of this routingblock tpye. shown when right-klicking with tool-item

  block: 41
      <int> id of the block you want to use as booster

  acceleration:
      one of the flags for this routingblock 

  - ignoreredstone: false
        <boolean> should redstone state of the block be ignored for this flag?

  - redstone: true
        <boolean> if ignoreredstone=false: if block power state equals this, the action for this flag is executed

  - speed: 250
        <int> percentage of maximum speed / minecart speed while boosting

  - relative: false
        <boolean> if true: minecart is boosted relative to its owen speed;
                       if false: minecart is boosted percentage of maximum speed

Available flags

acceleration:
    - ignoreredstone
    - redstone
    - speed
    - relative
launcher:
    - ignoreredstone
    - redstone
    - speed
    - relative
catcher:
    - ignoreredstone
    - redstone
switch:
    - ignoreredstone
    - redstone

Default config

debug: false
max-speed: 12
tool-item: 271
sign-radius: 3
sign-can-define-type: false
slow-when-empty: false
routingblocks:
- title: Booster
  block: 41
  acceleration:
  - ignoreredstone: false
  - redstone: true
  - speed: 250
  - relative: false
  acceleration:
  - ignoreredstone: false
  - redstone: false
  - speed: 10
  - relative: false
- title: Station
  block: 49
  launcher:
  - ignoreredstone: false
  - redstone: true
  - speed: 10
  - relative: false
  catcher:
  - ignoreredstone: false
  - redstone: false
- title: Switch
  block: 42
  switch:
  - ignoreredstone: true
  - redstone: true

Comments

Posts Quoted:
Reply
Clear All Quotes