Advertisement
gergefil

TrainCarts Config

Jan 29th, 2013
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.30 KB | None | 0 0
  1. #> This is the configuration file of TrainCarts
  2. #> In here you can tweak TrainCarts to what you want
  3. #> For more information, you can visit the following websites:
  4. #> http://www.minecraftwiki.net/wiki/Bukkit/TrainCarts
  5. #> http://forums.bukkit.org/threads/traincarts.29491/
  6.  
  7. # The distance between two normally-aligned (straight) carts in a train
  8. normal:
  9.  # The distance between two carts in a train
  10.   cartDistance: 1.5
  11.   # The factor at which this distance is kept
  12.   cartDistanceForcer: 0.1
  13.  
  14. # Settings for turned (in curve) carts
  15. turned:
  16.  # The distance between two carts in a train
  17.   cartDistance: 1.6
  18.   # The factor at which this distance is kept
  19.   cartDistanceForcer: 0.2
  20.  
  21. # The 'keep distance' factor to apply when carts are too close to each other
  22. nearCartDistanceFactor: 1.2
  23.  
  24. # The maximum allowed cart distance, after this distance the carts break apart
  25. maxCartDistance: 4.0
  26.  
  27. # Whether or not the combined carts (powered/storage minecarts) break up into two items
  28. breakCombinedCarts: false
  29.  
  30. # Whether or not items drop when the minecarts break
  31. spawnItemDrops: true
  32.  
  33. # A performance boost to give to powered minecarts (0 = normal speed)
  34. poweredCartBoost: 0.1
  35.  
  36. # The maximum velocity (blocks/tick) a minecart can possibly have set
  37. maxVelocity: 5.0
  38.  
  39. # The XYZ offset used when a passenger exits a minecart
  40. exitOffset:
  41.   x: 0.0
  42.   y: 0.0
  43.   z: 0.0
  44.  
  45. # The multiplier used to slow down minecarts
  46. # Normal is the default, slow is when the minecart is meant to slow down.
  47. slowDownMultiplier:
  48.   normal: 0.997
  49.   slow: 0.96
  50.  
  51. # The maximum allowed ejection distance for eject signs
  52. maxEjectDistance: 10.0
  53.  
  54. # The amount of velocity stations give when launching trains
  55. launchForce: 10.0
  56.  
  57. # Whether or not powered minecarts obtain their coal from attached storage minecarts
  58. useCoalFromStorageCart: false
  59.  
  60. # Whether or not the player that places a minecart is set owner
  61. setOwnerOnPlacement: true
  62.  
  63. # Whether or not a hissing sound is made when trains stop at a station
  64. playSoundAtStation: true
  65.  
  66. # Whether or not chunks are only kept loaded when the train is moving
  67. keepChunksLoadedOnlyWhenMoving: false
  68.  
  69. # The maximum length a detector region (between two detectors) can be
  70. maxDetectorLength: 2000
  71.  
  72. # The maximum amount of minecart items that can be stacked in one item
  73. maxMinecartStackSize: 64
  74.  
  75. # The default radius chest/furnace sign systems look for the needed blocks
  76. defaultTransferRadius: 2
  77.  
  78. # Whether or not empty minecarts slow down faster than occupied minecarts
  79. slowDownEmptyCarts: false
  80.  
  81. # A list of world names where TrainCarts should be disabled
  82. # World names are not case-sensitive
  83. disabledWorlds:
  84. - DefaultWorld1
  85. - DefaultWorld2
  86.  
  87. # The block materials that can be broken using minecarts
  88. # Players with the admin block break permission can use any type
  89. # Others have to use one from this list
  90. allowedBlockBreakTypes:
  91. - LOG
  92. - CROPS
  93.  
  94. # Whether or not to show item animations when transferring items
  95. showTransferAnimations: true
  96.  
  97. # Several shortcuts you can use on announce signs (text is replaced)
  98. messageShortcuts:
  99.   welcome: &eWelcome to &f
  100.  
  101. # Several shortcuts you can use on switcher and detector signs (text is replaced)
  102. statementShortcuts:
  103.   diamond: i@diamond
  104.  
  105. # Several shortcuts you can use on signs to set the items
  106. itemShortcuts:
  107.   fuel: wood;coal;stick
  108.   heatable: cobblestone;clay_ball;raw_fish;sand;redstone_ore;gold_ore;pork;iron_ore;log;coal_ore;lapis_ore;cactus;raw_chicken;diamond_ore;raw_beef
  109.  
  110. # The boosting factor of powered rails (default = 0.06)
  111. poweredRailBoost: 0.06
  112.  
  113. # Settings used when carts collide with entities
  114. collision:
  115.  # If train owners are ignored
  116.   ignoreOwners: true
  117.   # If global train owners are ignored
  118.   ignoreGlobalOwners: false
  119.   # The amount of force at which minecarts push away others
  120.   pushAwayForce: 0.2
  121.  
  122. # Whether storage minecarts get fuel when launching from stations
  123. refillAtStations: true
  124.  
  125. # Whether minecarts are instantly destroyed by creative players
  126. # Note that manual minecart movement is not possible for creative players with this enabled
  127. instantCreativeDestroy: false
  128.  
  129. # What velocity to set when a player tries to manually move a train (by damaging it)
  130. manualMovementSpeed: 12.0
  131.  
  132. # The currency Ticket signs will display in messages, %value% represents the displayed value
  133. currencyFormat: '%value% Dollars'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement