Advertisement
Guest User

Untitled

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