Advertisement
iamvishnu

Ontime Config

Aug 17th, 2014
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.40 KB | None | 0 0
  1. # OnTime Configuration File
  2. # Last Default YML Update: July 17, 2012
  3. # Author: Edge209
  4.  
  5. #Version of this config file DO NOT CHANGE THIS
  6. configVersion: 18
  7.  
  8. # The name of your server
  9. serverName: The Minecraft Blog Server
  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. # maximum length of 'top player' lists
  21. topListMax: 10
  22.  
  23. # Enable if data should be saved to disk on scheduled event. Otherwise it will happen on server shutdown only
  24. autoSaveEnable: true
  25.  
  26. # If auto file save is enabled above, how frequently (server ticks) should this be done. (72000 = 1 hour)
  27. autoSavePeriod: 72000
  28.  
  29. # Enable if backup versions of data files should be auto-created each day
  30. autoBackupEnable: true
  31.  
  32. # If auto backup is enabled above, how many versions should be retained?
  33. autoBackupVersions: 3
  34.  
  35.  
  36. # Enable/Disable detailed (daily/weekly/monthly) PLAYING TIME collection
  37. collectPlayDetailEnable: true
  38.  
  39. # Enable/Disable detailed (daily/weekly/monthly) VOTE collection (requires MySQL)
  40. collectVoteDetailEnable: true
  41.  
  42. # Enable/Disable detailed (daily/weekly/monthly) REFERRAL collection (requires MySQL)
  43. collectReferDetailEnable: true
  44.  
  45.  
  46. # Identify the starting day of each week for weekly reports and weekly rewards. Valid Values: 1-7 where:
  47. # 1=Sunday; 2=Monday; etc.
  48. firstDayofWeek: 2
  49.  
  50. # Identify the starting day of each month for monthly reports, and montly rewards.
  51. # Just in case you want to start in the middle for some strange reason..... and to help debug problems
  52. # Valid Values: 1-31 where: 1=1st; 2=2nd; etc.
  53. firstDayofMonth: 1
  54.  
  55. # Enable if DAILY/WEEKLY/MONTLY reports should be auto-generated
  56. autoReportEnable: true
  57.  
  58.  
  59. # If 'autoReportEnable is true' then, enable various DAILY/WEEKLY/MONTHLY reports
  60.  
  61. dailyPlayReportEnable: true
  62. weeklyPlayReportEnable: true
  63. monthlyPlayReportEnable: true
  64.  
  65.  
  66. # Report Storage sub-folder under /plugins/OnTime/
  67. # '/' implies no sub-folder. '/reports' is otherwise recommended
  68. reportFolder: /
  69.  
  70. # Date format used in reports and in filename (if enabled below)
  71. dateFilenameFormat: yyyy.MM.dd
  72.  
  73. # Enable date to be used in Report filenames (using format above)
  74. dateInFilenameEnable: true
  75.  
  76.  
  77. # Report Storage sub-folder under /plugins/OnTime/
  78. # '/' implies no sub-folder. '/reports' is otherwise recommended
  79. reportFolder: /reports
  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: -1
  89. weeklyReportRetention: -1
  90. monthlyReportRetention: -1
  91. afkReportRetention: -1
  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.  
  100. # Enable if log file should be created.
  101. logEnable: true
  102.  
  103. # Detail to be included in OnTime logfile. 1=most detail ; 2=medium ; 3=least detail
  104. logLevel: 1
  105.  
  106. # Detail to be shown on console. 1=most detail ;2= medium; 3=least detail
  107. consoleLogLevel: 3
  108.  
  109. # Log Levels Include:
  110. # Level 1 (Level 2 and Level 3 events plus)
  111. # Player login event
  112. # Player Quit event
  113. # Rewards scheduled
  114. # Rewards cancelled
  115. # Level 2 (Level 3 events plus)
  116. # Players purged from records due to low play time
  117. # Players purged from records due to long absence
  118. # Players not scheduled for reward due to lack of receive permission
  119. # Level 3 (Level 3 events only)
  120. # 'set', 'add', and 'remove' commands executed
  121. # Rewards Issued
  122. # Error Messages
  123.  
  124. # Enable if OnTime Rewards system to be enabled
  125. rewardsEnable: true
  126.  
  127. # Enable if Reward Notification Messages to players should be displayed
  128. rewardNotifyEnable: true
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. # Enable if players are allowed to be referred by other players, and 'referred by' rewards defined and issued
  137. referredByEnable: true
  138.  
  139. # Enable if referred by usage should be tracked using permission strings. If referredByEnable (above) is true and
  140. # dataStoage (below) is YML, this *MUST* remain true for referredBy to function.
  141. referredByPermTrackEnable: true
  142.  
  143. # Delay during OnTime enable to ensure it finished init AFTER vault, permissions, and econ plugins
  144. # For most servers there is no need to change this (in seconds)
  145. startupDelay: 0
  146.  
  147. # Enable/Disable Votifier Statistics collection (for players and vote services)
  148. votifierStatsEnable: true
  149.  
  150.  
  151.  
  152. # 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
  153. # a reference by another player. Set to -1 for no limit.
  154. referredByMaxTime: 48
  155.  
  156. # Enable if AFK status to be checked, and AFK time NOT counted
  157. afkCheckEnable: true
  158.  
  159. # If AFK is enabled, max time (minutes) with no activity before player is considered AFK
  160. afkTime: 5
  161.  
  162. # if AFK is enable, also enable this for AFK history collection and reporting
  163. collectAfkEnable: true
  164.  
  165. # If AFK Collecting/Reporting is enabled, then set the period for AFK reporting/sorting.
  166. # Valid values are: Today, Week, Month (make sure only first letter is upper case)
  167. afkReportPeriod: Week
  168.  
  169.  
  170. # Selection of Data Storage Method. Valid values= DAT, YML, MYSQL
  171. dataStorage: MYSQL
  172.  
  173. # MySQL - This must be enabled and properly set up if MySQL is to be used for data storage and/or
  174. # data import is to be done from another plugin MySQL table. (currently support for LogBlock is provided)
  175. MySQL:
  176. enable: true
  177. host: 127.0.0.1
  178. port: 3306
  179. user: 5800
  180. password: e8afc75167
  181. database: 5800
  182. table: ontime-players
  183.  
  184.  
  185. # Top Player Rewards
  186. #
  187. # When should rewards be issued to the overall top (total OnTime) players? Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  188. totalTopPlayReward: monthly
  189.  
  190. # When should rewards be issued to the overall top voting players? Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  191. totalTopVoteReward: disable
  192.  
  193. # When should rewards be issued to the overall top referring players? Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  194. totalTopReferReward: disable
  195.  
  196. # When should rewards be issued to the overall top point earning players? Valid settings: 'disable', 'daily', 'weekly', and 'monthly'
  197. totalTopPointReward: disable
  198.  
  199.  
  200.  
  201. # Set 'true' if running OnTime in a single-server MC environment, or if this is designated the 'primary' server in
  202. # a multi-server MC environment where servers are sharing one MySQL database. In the multi-server environment there
  203. # should be only ONE of the servers designated as 'primary'
  204. primaryServer: true
  205. # Enable if OnTime Messaging will be used
  206. messagesEnable: true
  207.  
  208. # Enable if OnTime Welcome Messages are to be displayed
  209. welcomeEnable: false
  210.  
  211. # Enable if OnTime should check for latest plugin version (from bukkitdev)
  212. updateCheckEnable: true
  213.  
  214. rewardBroadcastEnable: true
  215.  
  216. # Enable if 'loyalty' Points are going to be used
  217. pointsEnable: true
  218.  
  219. # If 'pointsEnable' above is true, Enable this if negative 'loyalty' Points totals should be possible
  220. negativePointsEnable: 0
  221.  
  222.  
  223.  
  224. # END ontime/config.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement