Guest User

Untitled

a guest
Dec 13th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. # OnTime Configuration File
  2. # Last Default YML Update: Aug 12, 2012
  3. # Author: Edge209
  4.  
  5. #Version of this config file DO NOT CHANGE THIS
  6. configVersion: 9
  7.  
  8. # The name of your server
  9. serverName: <Your Server Name Here>
  10.  
  11. # If purge is enabled users will be auto removed from stored file if they don't have enough play time / or have not been on for so long
  12. purgeEnable: false
  13.  
  14. # minimum time in minutes someone has to be on for their data to be saved
  15. purgeTimeMin: 10
  16.  
  17. # maximum time in days since last login before purge
  18. purgeLoginDay: 60
  19.  
  20. # Enable if purged players should be auto-demoted
  21. purgeDemotionEnable: false
  22.  
  23. # If purgeDemotion is enabled, this is target group for demotion
  24. purgeDemotionGroup: default
  25.  
  26. # maximum length of 'top player' lists
  27. topListMax: 10
  28.  
  29. # Enable if data should be saved to disk on scheduled event. Otherwise it will happen on server shutdown only
  30. autoSaveEnable: true
  31.  
  32. # If auto file save is enabled above, how frequently (server ticks) should this be done. (72000 = 1 hour)
  33. autoSavePeriod: 72000
  34.  
  35. # Enable if backup versions of data files should be auto-created each day
  36. autoBackupEnable: true
  37.  
  38. # If auto backup is enabled above, how many versions should be retained?
  39. autoBackupVersions: 3
  40.  
  41. # Enable if daily playingtime should be collected and reported
  42. collectDailyEnable: true
  43.  
  44. # Enable if weekly playingtime should be collected and reported
  45. collectWeeklyEnable: true
  46.  
  47. # Enable if monthly playingtime should be collected and reported
  48. collectMonthlyEnable: true
  49.  
  50. # Identify the starting day of each week for weekly reports and weekly rewards. Valid Values: 1-7 where:
  51. # 1=Sunday; 2=Monday; etc.
  52. firstDayofWeek: 1
  53.  
  54. # Identify the starting day of each month for monthly reports, and monthly rewards.
  55. # Just in case you want to start in the middle for some strange reason..... and to help debug problems
  56. # Valid Values: 1-31 where: 1=1st; 2=2nd; etc.
  57. firstDayofMonth: 1
  58.  
  59. # Enable if DAILY/WEEKLY/MONTLY reports should be auto-generated
  60. autoReportEnable: true
  61.  
  62. # Enable if HTML format should be used for Reports (default is .txt)
  63. reportFormatHTML: false
  64.  
  65. # Enable if log file should be created.
  66. logEnable: false
  67.  
  68. # Detail to be included in OnTime logfile. 1=most detail ; 2=medium ; 3=least detail
  69. logLevel: 3
  70.  
  71. # Detail to be shown on console. 1=most detail ;2= medium; 3=least detail
  72. consoleLogLevel: 3
  73.  
  74. # Log Levels Include:
  75. # Level 1 (Level 2 and Level 3 events plus)
  76. # Player login event
  77. # Player Quit event
  78. # Rewards scheduled
  79. # Rewards cancelled
  80. # Level 2 (Level 3 events plus)
  81. # Players purged from records due to low play time
  82. # Players purged from records due to long absence
  83. # Players not scheduled for reward due to lack of receive permission
  84. # Level 3 (Level 3 events only)
  85. # 'set', 'add', and 'remove' commands executed
  86. # Rewards Issued
  87. # Error Messages
  88.  
  89. # Enable if OnTime Rewards system to be enabled
  90. rewardsEnable: true
  91.  
  92. # Enable if Reward Notification Messages to players should be displayed
  93. rewardNotifyEnable: true
  94.  
  95. # Enable if players are allowed to be referred by other players, and 'referred by' rewards defined and issued
  96. referredByEnable: false
  97.  
  98. # Max total OnTime (in hours) where player can still be referred by another. After they have been on this long, they can no longer claim
  99. # a reference by another player. Set to -1 for no limit.
  100. referredByMaxTime: -1
  101.  
  102. # Enable if AFK status to be checked, and AFK time NOT counted
  103. afkCheckEnable: true
  104.  
  105. # If AFK is enabled, max time (minutes) with no activity before player is considered AFK
  106. afkTime: 5
  107.  
  108. # Selection of Data Storage Method. Valid values= DAT, YML, MYSQL
  109. dataStorage: YML
  110.  
  111. # MySQL - This must be enabled and properly set up if MySQL is to be used for data storage and/or
  112. # data import is to be done from another plugin MySQL table. (currently support for LogBlock is provided)
  113. MySQL:
  114. enable: false
  115. host: localhost
  116. port: 3306
  117. user: root
  118. password: password
  119. database: minecraft
  120.  
  121. # Top Player Rewards
  122. #
  123. # Enable if rewards should be allowed to be defined as 'top player' rewards for the associated time period.
  124. topRewardDailyEnable: false
  125. topRewardWeeklyEnable: true
  126. topRewardMonthlyEnable: true
  127. topRewardTotalEnable: false
  128. # When should rewards be issued to the overall top (total OnTime) players? Valid settings: "daily", "weekly", and "monthly"
  129. totalTopReward: weekly
  130.  
  131. # Set 'true' if running OnTime in a single-server MC environment, or if this is designated the 'primary' server in
  132. # a multi-server MC environment where servers are sharing one MySQL database. In the multi-server environment there
  133. # should be only ONE of the servers designated as 'primary'
  134. primaryServer: true
  135.  
  136. # Enable if OnTime Messaging will be used
  137. messagesEnable: true
  138.  
  139. # Enable if OnTime Welcome Messages are to be displayed
  140. welcomeEnable: true
Add Comment
Please, Sign In to add comment