Guest User

OnTime Config

a guest
Feb 19th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.98 KB | None | 0 0
  1. # Author: Edge209
  2.  
  3. ###################################################
  4. #  DO NOT CHANGE THE VERSION number for this file #
  5. configVersion: 17
  6. ###################################################
  7.  
  8. # The name of your server
  9. serverName: DiggyMinecraft
  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: 34800
  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. # Delay during OnTime enable to ensure it finished init AFTER vault, permissions, and econ plugins
  42. # For most servers there is no need to change this (in seconds)
  43. startupDelay: 0
  44.  
  45. # Enable/Disable detailed (daily/weekly/monthly) PLAYING TIME collection
  46. collectPlayDetailEnable: true
  47.  
  48. # Enable/Disable detailed (daily/weekly/monthly) VOTE collection (requires MySQL)
  49. collectVoteDetailEnable: false
  50.  
  51. # Enable/Disable detailed (daily/weekly/monthly) REFERRAL collection (requires MySQL)
  52. collectReferDetailEnable: false
  53.  
  54. # Identify the starting day of each week for weekly reports and weekly rewards.  Valid Values: 1-7  where:
  55. # 1=Sunday; 2=Monday; etc.
  56. firstDayofWeek: 2
  57.  
  58. # Identify the starting day of each month for monthly reports, and monthly rewards.
  59. # Just in case you want to start in the middle for some strange reason..... and to help debug problems
  60. # Valid Values: 1-31  where: 1=1st; 2=2nd; etc.
  61. firstDayofMonth: 1
  62.  
  63. # Enable if DAILY/WEEKLY/MONTLY reports should be auto-generated
  64. autoReportEnable: true
  65.  
  66. # If 'autoReportEnable is true' then, enable various DAILY/WEEKLY/MONTHLY reports
  67. dailyPlayReportEnable: true
  68. weeklyPlayReportEnable: true
  69. monthlyPlayReportEnable: true
  70.  
  71. # Report Storage sub-folder under /plugins/OnTime/
  72. # '/' implies no sub-folder.  '/reports' is otherwise recommended
  73. reportFolder: /
  74.  
  75. # Date format used in reports and in filename (if enabled below)
  76. dateFilenameFormat: yyyy.MM.dd
  77.  
  78. # Enable date to be used in Report filenames (using format above)
  79. dateInFilenameEnable: true
  80.  
  81. # If autoReportEnable is true, set the format of the reports: (Valid Settings: TXT, HTML, MYSQL)
  82. reportFormat: TXT
  83.  
  84. # If autoReportEnable is true, set the duration (in days) that reports are retained before they are auto deleted
  85. # Set any of the following to -1 to disable the auto deletion for that report type
  86. # Recommendations: Daily:8; Weekly:36; Monthly:380; afk:15
  87. #
  88. dailyReportRetention: 8
  89. weeklyReportRetention: 21
  90. monthlyReportRetention: 186
  91. afkReportRetention: 7
  92.  
  93. # Enable if Online player status should be tracked in MYSQL Table
  94. onlineTrackingEnable: false
  95.  
  96. # If online tracking is enabled, set the refresh rate (in minutes)
  97. onlineTrackingRefresh: 5
  98.  
  99. # Enable if log file should be created.
  100. logEnable: true
  101.  
  102. # Detail to be included in OnTime logfile. 1=most detail ; 2=medium ; 3=least detail
  103. logLevel: 1
  104.  
  105. # Detail to be shown on console. 1=most detail ;2= medium; 3=least detail
  106. consoleLogLevel: 3
  107.  
  108. # Enable if OnTime Rewards system to be enabled
  109. rewardsEnable: true
  110.  
  111. # Enable if Reward Notification Messages to players should be displayed
  112. rewardNotifyEnable: true
  113.  
  114. # Enable if Reward Broadcast Messages should be sent to all online players
  115. rewardBroadcastEnable: true
  116.  
  117. # Enable if players are allowed to be referred by other players, and 'referred by' rewards defined and issued
  118. referredByEnable: false
  119.  
  120. # Enable if referred by usage should be tracked using permission strings. If referredByEnable (above) is true and
  121. # dataStoage (below) is YML, this *MUST* remain true for referredBy to function.
  122. referredByPermTrackEnable: false
  123.  
  124. # 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
  125. # a reference by another player.  Set to -1 for no limit.
  126. referredByMaxTime: -1
  127.  
  128. # Enable if AFK status to be checked, and AFK time NOT counted
  129. afkCheckEnable: false
  130.  
  131. # If AFK is enabled, max time (minutes) with no activity before player is considered AFK
  132. afkTime: 10
  133.  
  134. # if AFK is enable, also enable this for AFK history collection and reporting
  135. collectAfkEnable: false
  136.  
  137. # If AFK Collecting/Reporting is enabled, then set the period for AFK reporting/sorting.  
  138. # Valid values are: Today, Week, Month (make sure only first letter is upper case)
  139. afkReportPeriod: Week
  140.  
  141. # Selection of Data Storage Method.  Valid values= YML, MYSQL
  142. dataStorage: YML
  143.  
  144. # MySQL - This must be enabled and properly set up if MySQL is to be used for data storage and/or
  145. #         data import is to be done from another plugin MySQL table.  (currently support for LogBlock is provided)
  146. MySQL:
  147.   enable: false
  148.   host: localhost
  149.   port: 3306
  150.   user: root
  151.   password: password
  152.   database: minecraft
  153.   table: ontime-players
  154.  
  155. # Top Player Rewards
  156. #
  157. # When should rewards be issued to the overall top (total OnTime) players?  Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  158. totalTopPlayReward: monthly
  159.  
  160. # When should rewards be issued to the overall top voting players?  Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  161. totalTopVoteReward: disable
  162.  
  163. # When should rewards be issued to the overall top referring players?  Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  164. totalTopReferReward: disable
  165.  
  166. # When should rewards be issued to the overall top point earning players?  Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  167. totalTopPointReward: disable
  168.  
  169.  
  170. # Set 'true' if running OnTime in a single-server MC environment, or if this is designated the 'primary' server in
  171. # a multi-server MC environment where servers are sharing one MySQL database.  In the multi-server environment there
  172. # should be only ONE of the servers designated as 'primary'
  173. primaryServer: true
  174.  
  175. # Enable if OnTime Messaging will be used
  176. messagesEnable: true
  177.  
  178. # Enable if OnTime Welcome Messages are to be displayed. 'messagesEnable' above must be 'true' for this to also be 'true'
  179. welcomeEnable: true
  180.  
  181. # Enable if OnTime should check for latest plugin version (from bukkitdev)
  182. updateCheckEnable: false
  183.  
  184. # Enable if 'loyalty' Points are going to be used
  185. pointsEnable: false
  186.  
  187. # If 'pointsEnable' above is true, Enable this if negative 'loyalty' Points totals should be possible
  188. negativePointsEnable: false
  189.  
  190. # END ontime/config.yml
Advertisement
Add Comment
Please, Sign In to add comment