Advertisement
Guest User

CONFIG.YML

a guest
Feb 16th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.42 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://wiki.bukkit.org/TrainCarts-Plugin
  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 XYZ offset used when a passenger exits a minecart
  37. exitOffset:
  38.   x: 0.0
  39.   y: 0.0
  40.   z: 0.0
  41.  
  42. # The amount of velocity stations give when launching trains
  43. launchForce: 10.0
  44.  
  45. # Settings used when carts push away/aside others (if enabled)
  46. pushAway:
  47.  # The amount of force at which minecarts push away others
  48.   force: 0.2
  49.   # If train owners are ignored
  50.   ignoreOwners: true
  51.   # If global train owners are ignored
  52.   ignoreGlobalOwners: false
  53.  
  54. # Whether or not powered minecarts obtain their coal from attached storage minecarts
  55. useCoalFromStorageCart: false
  56.  
  57. # Whether or not the player that places a minecart is set owner
  58. setOwnerOnPlacement: true
  59.  
  60. # Whether or not a hissing sound is made when trains stop at a station
  61. playSoundAtStation: true
  62.  
  63. # Whether or not chunks are only kept loaded when the train is moving
  64. keepChunksLoadedOnlyWhenMoving: false
  65.  
  66. # The maximum length a detector region (between two detectors) can be
  67. maxDetectorLength: 3000
  68.  
  69. # The maximum amount of minecart items that can be stacked in one item
  70. maxMinecartStackSize: 64
  71.  
  72. # The block materials that can be broken using minecarts
  73. # Players with the admin block break permission can use any type
  74. # Others have to use one from this list
  75. allowedBlockBreakTypes:
  76. - LOG
  77. - CROPS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement