Advertisement
Guest User

Untitled

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