Advertisement
Guest User

Untitled

a guest
Mar 14th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 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: 11
  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: true
  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. # Report Storage sub-folder under /plugins/OnTime/
  63. # '/' implies no sub-folder. '/reports' is otherwise recommended
  64. reportFolder: /
  65.  
  66. # Date format used in reports and in filename (if enabled below)
  67. dateFilenameFormat: yyyy.MM.dd
  68.  
  69. # Enable date to be used in Report filenames (using format above)
  70. dateInFilenameEnable: true
  71.  
  72. # Enable if HTML format should be used for Reports (default is .txt)
  73. reportFormatHTML: false
  74.  
  75. # Enable if log file should be created.
  76. logEnable: false
  77.  
  78. # Detail to be included in OnTime logfile. 1=most detail ; 2=medium ; 3=least detail
  79. logLevel: 3
  80.  
  81. # Detail to be shown on console. 1=most detail ;2= medium; 3=least detail
  82. consoleLogLevel: 3
  83.  
  84. # Log Levels Include:
  85. # Level 1 (Level 2 and Level 3 events plus)
  86. # Player login event
  87. # Player Quit event
  88. # Rewards scheduled
  89. # Rewards cancelled
  90. # Level 2 (Level 3 events plus)
  91. # Players purged from records due to low play time
  92. # Players purged from records due to long absence
  93. # Players not scheduled for reward due to lack of receive permission
  94. # Level 3 (Level 3 events only)
  95. # 'set', 'add', and 'remove' commands executed
  96. # Rewards Issued
  97. # Error Messages
  98.  
  99. # Enable if OnTime Rewards system to be enabled
  100. rewardsEnable: true
  101.  
  102. # Enable if Reward Notification Messages to players should be displayed
  103. rewardNotifyEnable: false
  104.  
  105. # Enable if players are allowed to be referred by other players, and 'referred by' rewards defined and issued
  106. referredByEnable: true
  107.  
  108. # 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
  109. # a reference by another player. Set to -1 for no limit.
  110. referredByMaxTime: -1
  111.  
  112. # Enable if AFK status to be checked, and AFK time NOT counted
  113. afkCheckEnable: true
  114.  
  115. # If AFK is enabled, max time (minutes) with no activity before player is considered AFK
  116. afkTime: 10
  117.  
  118. # Selection of Data Storage Method. Valid values= DAT, YML, MYSQL
  119. dataStorage: YML
  120.  
  121. # MySQL - This must be enabled and properly set up if MySQL is to be used for data storage and/or
  122. # data import is to be done from another plugin MySQL table. (currently support for LogBlock is provided)
  123. MySQL:
  124. enable: false
  125. host: localhost
  126. port: 3306
  127. user: root
  128. password: password
  129. database: minecraft
  130.  
  131. # Top Player Rewards
  132. #
  133. # Enable if rewards should be allowed to be defined as 'top player' rewards for the associated time period.
  134. topRewardDailyEnable: true
  135. topRewardWeeklyEnable: true
  136. topRewardMonthlyEnable: true
  137. topRewardTotalEnable: true
  138. # When should rewards be issued to the overall top (total OnTime) players? Valid settings: "daily", "weekly", and "monthly"
  139. totalTopReward: weekly
  140.  
  141. # Set 'true' if running OnTime in a single-server MC environment, or if this is designated the 'primary' server in
  142. # a multi-server MC environment where servers are sharing one MySQL database. In the multi-server environment there
  143. # should be only ONE of the servers designated as 'primary'
  144. primaryServer: true
  145.  
  146. # Enable if OnTime Messaging will be used
  147. messagesEnable: false
  148.  
  149. # Enable if OnTime Welcome Messages are to be displayed
  150. welcomeEnable: false
  151.  
  152. # Enable if OnTime should check for latest plugin version (from bukkitdev)
  153. updateCheckEnable: true
  154.  
  155. # END ontime/config.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement