Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ##########################################################################################################
  4. # clientconfig
  5. #--------------------------------------------------------------------------------------------------------#
  6. # Configurations for client modifications.
  7. # Most of them are for rendering/view.
  8. ##########################################################################################################
  9.  
  10. clientconfig {
  11. # Limit of magnitude can be seen on naked eye.
  12. # If you want to increase FPS, you can set this property a bit little (e.g. 0.3)
  13. # and FPS will be exponentially improved
  14. D:Mag_Limit=5.0
  15.  
  16. # Moon is drawn with fragments
  17. # Less fragments will increase FPS, but the moon become more defective
  18. I:Moon_Fragments_Number=16
  19.  
  20. # Degree of the twinkling effect of star.
  21. # It determines the turbulance of atmosphere, which actually cause the twinkling effect
  22. D:"Twinkling(Turbulance)"=0.3
  23.  
  24. # Length of minute in tick. (The minute & hour is displayed on HUD as HH:MM format)
  25. D:Minute_Length=20.0
  26.  
  27. # Length of hour in minute. (The minute & hour is displayed on HUD as HH:MM format)
  28. I:Hour_Length=60
  29. }
  30.  
  31.  
  32. ##########################################################################################################
  33. # serverconfig
  34. #--------------------------------------------------------------------------------------------------------#
  35. # Configurations for server modifications.
  36. ##########################################################################################################
  37.  
  38. serverconfig {
  39. # Enables Server-Side Sky change.
  40. B:Server_Enabled=true
  41.  
  42. # Length of a day, in a tick.
  43. D:Day_Length=24000.0
  44.  
  45. # Length of a year, in a day.
  46. D:Year_Length=365.25
  47.  
  48. # Year offset on world starting time.
  49. I:Year_Offset=0
  50.  
  51. # Day offset on world starting time.
  52. I:Day_Offset=0
  53.  
  54. # Tick offset on world starting time.
  55. D:Tick_Offset=5000.0
  56.  
  57. # Lattitude on Overworld, in Degrees.
  58. D:Lattitude_Overworld=37.5
  59.  
  60. # Longitude on Overworld, in Degrees. (East is +)
  61. D:Longitude_Overworld=0.0
  62.  
  63. # Lattitude on Ender, in Degrees.
  64. D:Lattitude_Ender=-52.5
  65.  
  66. # Longitude on Ender, in Degrees. (East is +)
  67. D:Longitude_Ender=180.0
  68.  
  69. # Size of moon. (Default size is 1.0)
  70. D:Moon_Size=1.0
  71.  
  72. # Brightness of moon. (Default brightness is 1.0)
  73. D:Moon_Brightness=1.0
  74.  
  75. wake {
  76. # You can choose first or last available wake time among wake properties
  77. S:Wake_Mode=last
  78.  
  79. wakebybright {
  80. # Enable this wake property.
  81. B:Enabled=true
  82.  
  83. # Solar azimuth(height) angle to wake up. (in degrees)
  84. D:Sun_Height_for_Wake=10.0
  85. }
  86.  
  87. wakebyalarm {
  88. # Enable this wake property.
  89. B:Enabled=false
  90.  
  91. # Wake-up time from midnight, in tick.
  92. I:Wake_Time_from_midnight=6000
  93. }
  94.  
  95. }
  96.  
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement