Advertisement
Zlepper

Config for ontime

Mar 20th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.88 KB | None | 0 0
  1. # OnTime Configuration File
  2. # Last Default YML Update: Oct 11, 2012
  3. # Author: Edge209
  4.  
  5. ###################################################
  6. #  DO NOT CHANGE THE VERSION number for this file #
  7. configVersion: 13
  8. ###################################################
  9.  
  10. # The name of your server
  11. serverName: Liccixcraft
  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: 60
  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: Starter
  27.  
  28. # maximum length of 'top player' lists
  29. topListMax: 10
  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: 3
  42.  
  43. # Enable if daily playingtime should be collected and reported
  44. collectDailyEnable: true
  45.  
  46. # Enable if weekly playingtime should be collected and reported
  47. collectWeeklyEnable: true
  48.  
  49. # Enable if monthly playingtime should be collected and reported
  50. collectMonthlyEnable: true
  51.  
  52. # Identify the starting day of each week for weekly reports and weekly rewards.  Valid Values: 1-7  where:
  53. # 1=Sunday; 2=Monday; etc.
  54. firstDayofWeek: 1
  55.  
  56. # Identify the starting day of each month for monthly reports, and monthly rewards.
  57. # Just in case you want to start in the middle for some strange reason..... and to help debug problems
  58. # Valid Values: 1-31  where: 1=1st; 2=2nd; etc.
  59. firstDayofMonth: 1
  60.  
  61. # Enable if DAILY/WEEKLY/MONTLY reports should be auto-generated
  62. autoReportEnable: true
  63.  
  64. # Report Storage sub-folder under /plugins/OnTime/
  65. # '/' implies no sub-folder.  '/reports' is otherwise recommended
  66. reportFolder: /
  67.  
  68. # Date format used in reports and in filename (if enabled below)
  69. dateFilenameFormat: yyyy.MM.dd
  70.  
  71. # Enable date to be used in Report filenames (using format above)
  72. dateInFilenameEnable: true
  73.  
  74. # Enable if HTML format should be used for Reports (default is .txt)
  75. reportFormatHTML: false
  76.  
  77. # Enable if log file should be created.
  78. logEnable: false
  79.  
  80. # Detail to be included in OnTime logfile. 1=most detail ; 2=medium ; 3=least detail
  81. logLevel: 1
  82.  
  83. # Detail to be shown on console. 1=most detail ;2= medium; 3=least detail
  84. consoleLogLevel: 1
  85.  
  86. # Log Levels Include:
  87. # Level 1 (Level 2 and Level 3 events plus)
  88. #   Player login event
  89. #   Player Quit event
  90. #   Rewards scheduled
  91. #   Rewards cancelled
  92. # Level 2 (Level 3 events plus)
  93. #   Players purged from records due to low play time
  94. #   Players purged from records due to long absence
  95. #   Players not scheduled for reward due to lack of receive permission
  96. # Level 3 (Level 3 events only)
  97. #   'set', 'add', and 'remove' commands executed
  98. #   Rewards Issued
  99. #   Error Messages
  100.  
  101. # Enable if OnTime Rewards system to be enabled
  102. rewardsEnable: true
  103.  
  104. # Enable if Reward Notification Messages to players should be displayed
  105. rewardNotifyEnable: true
  106.  
  107. # Enable if Reward Broadcast Messages should be sent to all online players
  108. rewardBroadcastEnable: true
  109.  
  110.  
  111. # Enable if players are allowed to be referred by other players, and 'referred by' rewards defined and issued
  112. referredByEnable: true
  113.  
  114. # Enable if referred by usage should be tracked using permission strings. If referredByEnable (above) is true and
  115. # dataStoage (below) is YML, this *MUST* remain true for referredBy to function.
  116. referredByPermTrackEnable: true
  117.  
  118. # Delay during OnTime enable to ensure it finished init AFTER vault, permissions, and econ plugins
  119. # For most servers there is no need to change this (in seconds)
  120. startupDelay: 0
  121.  
  122.  
  123. # 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
  124. # a reference by another player.  Set to -1 for no limit.
  125. referredByMaxTime: 2
  126.  
  127. # Enable if AFK status to be checked, and AFK time NOT counted
  128. afkCheckEnable: true
  129.  
  130. # If AFK is enabled, max time (minutes) with no activity before player is considered AFK
  131. afkTime: 10
  132.  
  133. # Selection of Data Storage Method.  Valid values= DAT, YML, MYSQL
  134. dataStorage: YML
  135.  
  136. # MySQL - This must be enabled and properly set up if MySQL is to be used for data storage and/or
  137. #         data import is to be done from another plugin MySQL table.  (currently support for LogBlock is provided)
  138. MySQL:
  139.   enable: true
  140.   host: ****
  141.   port: ****
  142.   user: ****
  143.   password: ****
  144.   database: ontime
  145.   table: ontime-players
  146.  
  147.  
  148. # Top Player Rewards
  149. #
  150. # Enable if rewards should be allowed to be defined as 'top player' rewards for the associated time period.
  151. topRewardDailyEnable: true
  152. topRewardWeeklyEnable: true
  153. topRewardMonthlyEnable: true
  154. topRewardTotalEnable: true
  155.  
  156. # When should rewards be issued to the overall top (total OnTime) players?  Valid settings: "daily", "weekly", and "monthly"
  157. totalTopReward: weekly
  158.  
  159. # Set 'true' if running OnTime in a single-server MC environment, or if this is designated the 'primary' server in
  160. # a multi-server MC environment where servers are sharing one MySQL database.  In the multi-server environment there
  161. # should be only ONE of the servers designated as 'primary'
  162. primaryServer: true
  163.  
  164. # Enable if OnTime Messaging will be used
  165. messagesEnable: false
  166.  
  167. # Enable if OnTime Welcome Messages are to be displayed
  168. welcomeEnable: false
  169.  
  170. # Enable if OnTime should check for latest plugin version (from bukkitdev)
  171. updateCheckEnable: true
  172.  
  173. # END ontime/config.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement