Advertisement
Guest User

train

a guest
Oct 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.25 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. # A performance boost to give to powered minecarts (0 = normal speed)
  31. poweredCartBoost: 0.1
  32.  
  33. # The boosting factor of powered rails (default = 0.06)
  34. poweredRailBoost: 0.06
  35.  
  36. # The maximum velocity (blocks/tick) a minecart can possibly have set
  37. maxVelocity: 5.0
  38.  
  39. # The multiplier used to slow down minecarts
  40. # Normal is the default, slow is when the minecart is meant to slow down.
  41. slowDownMultiplier:
  42. normal: 0.997
  43. slow: 0.96
  44.  
  45. # The maximum allowed ejection distance for eject signs
  46. maxEjectDistance: 10.0
  47.  
  48. # The amount of velocity stations give when launching trains
  49. launchForce: 10.0
  50.  
  51. # Settings used when carts collide with entities
  52. collision:
  53. # If train owners are ignored
  54. ignoreOwners: false
  55. # If global train owners are ignored
  56. ignoreGlobalOwners: false
  57. # The amount of force at which minecarts push away others
  58. pushAwayForce: 0.2
  59.  
  60. # Whether or not all minecarts spawned on the server turn into TrainCarts' Minecarts
  61. # Note that the TrainCart placement permission is then no longer active
  62. allMinecartsAreTrainCarts: false
  63.  
  64. # Whether or not powered minecarts obtain their coal from attached storage minecarts
  65. useCoalFromStorageCart: false
  66.  
  67. # Whether or not the player that places a minecart is set owner
  68. setOwnerOnPlacement: true
  69.  
  70. # Whether or not a hissing sound is made when trains stop at a station
  71. playSoundAtStation: true
  72.  
  73. # What style of launching to use in stations and launcher sign systems by default. Possible values:
  74. # - 'linear': gradually switches from one motion speed to another at a linear rate
  75. # - 'bezier': uses a bezier curve (ease in-out), resulting in slower changes in motion at start/end of launch
  76. launchFunction: bezier
  77.  
  78. # Whether or not chunks are only kept loaded when the train is moving
  79. keepChunksLoadedOnlyWhenMoving: false
  80.  
  81. # Whether to enable or cancel collisions with blocks above minecarts
  82. # Some constructions depend on these block collisions to block minecarts
  83. # If these collisions are unwanted, they can be turned off here
  84. enableCeilingBlockCollision: true
  85.  
  86. # Advanced: Whether trains use a different way of server->client synchronization
  87. # With this enabled, trains are expected to move smoother with less bumping
  88. # With this disabled, no smoothing is applied. Only disable it if it causes problems/incompatibility
  89. useNetworkSynchronizer: true
  90.  
  91. # The maximum length a detector region (between two detectors) can be
  92. maxDetectorLength: 2000
  93.  
  94. # The maximum amount of minecart items that can be stacked in one item
  95. maxMinecartStackSize: 64
  96.  
  97. # The maximum radius chest/furnace sign systems look for the needed blocks
  98. maxTransferRadius: 5
  99.  
  100. # The default radius chest/furnace sign systems look for the needed blocks
  101. defaultTransferRadius: 2
  102.  
  103. # Whether or not empty minecarts slow down faster than occupied minecarts
  104. slowDownEmptyCarts: false
  105.  
  106. # Whether storage minecarts get fuel when launching from stations
  107. refillAtStations: true
  108.  
  109. # When set to true, players will be able to break minecarts with a single slap
  110.  
  111. # No item drops are spawned for minecarts destroyed this way. Minecart contents ARE dropped.
  112. # They can still select minecarts by crouching and then slapping the minecart
  113.  
  114. # When set to false, players will never instantly destroy minecarts and they will have to break it as if in survival.
  115. instantCreativeDestroy: true
  116.  
  117. # Whether minecarts are allowed to have a 90-degree pitch angle when going up vertical rails
  118. # When disabled, minecarts will keep a 0-degree pitch angle instead
  119. allowVerticalPitch: true
  120.  
  121. # Before TrainCarts v1.12.1-v2 vertical rail gravity was kind of awful
  122. # It took a lot more speed to get up a vertical rail compared to sloped rails
  123. # This was fixed. If you depend on this legacy behavior, change this option to True
  124. legacyVerticalGravity: false
  125.  
  126. # Whether players (with build permissions) can edit existing rails by right-clicking on them
  127. allowRailEditing: true
  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'
  134.  
  135. # Whether trains can be teleported to the nether (or back) when rails are laid close to the portals
  136. allowNetherTeleport: true
  137.  
  138. # The delay (in ticks) between ejecting and re-entering by collision (e.g. mobs auto-entering carts)
  139. collisionReEnterDelay: 100
  140.  
  141. # A list of world names where TrainCarts should be disabled
  142. # World names are not case-sensitive
  143. disabledWorlds:
  144. - DefaultWorld1
  145. - DefaultWorld2
  146.  
  147. # The block materials that can be broken using minecarts
  148. # Players with the admin block break permission can use any type
  149. # Others have to use one from this list
  150. allowedBlockBreakTypes:
  151. - CROPS
  152. - LOG
  153.  
  154. # Whether or not to show item animations when transferring items
  155. showTransferAnimations: true
  156.  
  157. # Whether a crafting table must exist when crafting items inside a storage minecart
  158. # When this is set to false and no crafting table is nearby, no item transfer animations are shown
  159. craftingRequireWorkbench: true
  160.  
  161. # Several shortcuts you can use on announce signs (text is replaced)
  162. messageShortcuts:
  163. welcome: &eWelcome to &f
  164.  
  165. # Several shortcuts you can use on switcher and detector signs (text is replaced)
  166. statementShortcuts:
  167. diamond: i@diamond
  168.  
  169. # Several shortcuts you can use on signs to set the items
  170. itemShortcuts:
  171. fuel: ''
  172. heatable: ''
  173. armor: gold_leggings;leather_boots;diamond_chestplate;leather_leggings;gold_helmet;diamond_helmet;leather_helmet;diamond_leggings;chainmail_chestplate;chainmail_helmet;diamond_boots;gold_chestplate;iron_helmet;iron_leggings;gold_boots;leather_chestplate;iron_boots;chainmail_boots;chainmail_leggings;iron_chestplate
  174. sword: wood_sword;stone_sword;iron_sword;gold_sword;iron_sword;diamond_sword
  175. boots: leather_boots;iron_boots;gold_boots;diamond_boots;chainmail_boots
  176. leggins: leather_leggings;iron_leggings;gold_leggings;diamond_leggings;chainmail_leggings
  177. chestplate: leather_chestplate;iron_chestplate;gold_chestplate;diamond_chestplate;chainmail_chestplate
  178. helmet: leather_helmet;iron_helmet;gold_helmet;diamond_helmet;chainmail_helmet
  179.  
  180. # Enables parsing signs with (train), as well as [train]
  181. # This makes it easier to write signs with a Mac keyboard layout
  182. parseParentheses: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement