Advertisement
Guest User

Untitled

a guest
May 20th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.65 KB | None | 0 0
  1. # #################### Timer ###################
  2. # Name of scheduler can be any you want
  3. # Mode can be one of Questions, Flash, Decode, Math or use 'All' to questions from all modes
  4. # You can setup start and stop times for game to begin and stop
  5. # Enable it in config file under UseScheduler setting
  6. # Its in 24 hour format, so dont use AM PM :)
  7. # You can set it to be accutate to the second, if you want.
  8. # setup SchedulerInterval in config file to 1 sec or more. By default its 60 (1 min)
  9. # Categories: Give any categories you want to include for questions or use 'All' to use them all
  10. # Days variables: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday, All
  11. # Rewards: Give any categories you want to include for posible rewards or use 'All' to use them all
  12. #
  13. # #################### DailyTimer ###################
  14. # Name of scheduler can be any you want
  15. # Mode can be one of Questions, Flash, Decode, Math or use 'All' to get top players from all modes
  16. # RewardTimeRange is in minutes from time when this will be announced, so 1440 will be from last 24 hours
  17. # AnnounceOn will determine when to announce winners and from whitch point to start counting RewardTimeRange
  18. # WeekDays variables: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday, All. You can use multiple variations
  19. # MonthDays can be from 1 to 31, recomended to use 1 for montly announcment as not all months have 29,30,31 days. You can use multiple days
  20. # for MonthDays to work correctly WeekDays should be set to all, as for example every month first day is not monday
  21. # Rewards will determine how many places you want to reward. Numbers should go in asscending order
  22. # For RewardCategory and RewardName you can use any from rewards.yml file under DailyRewards section.
  23. # Optionaly you can use 'All' variable to get all categories or all rewardnames in that category. In this case reward will be picked randomly.
  24.  
  25. Timer:
  26. '1':
  27. Mode: all
  28. From: '09:10:00'
  29. Until: '10:15:10'
  30. Categories:
  31. - All
  32. Days:
  33. - All
  34. Rewards:
  35. - All
  36. '2':
  37. Mode: Flash
  38. From: '11:20:15'
  39. Until: '12:00:00'
  40. Categories:
  41. - All
  42. Days:
  43. - All
  44. Rewards:
  45. - All
  46. '3':
  47. Mode: Decode
  48. From: '14:00:25'
  49. Until: '16:00:00'
  50. Categories:
  51. - All
  52. Days:
  53. - All
  54. Rewards:
  55. - All
  56. '4':
  57. Mode: Decode
  58. From: '17:01:11'
  59. Until: '17:30:35'
  60. Categories:
  61. - All
  62. Days:
  63. - All
  64. Rewards:
  65. - All
  66. '5':
  67. Mode: Questions
  68. From: '18:00:00'
  69. Until: '20:00:00'
  70. Categories:
  71. - All
  72. Days:
  73. - All
  74. Rewards:
  75. - All
  76. DailyTimer:
  77. 'ThisIsDaily':
  78. Mode: All
  79. RewardTimeRange: 1440
  80. AnnounceOn: '16:00:00'
  81. WeekDays:
  82. - All
  83. MonthDays:
  84. - All
  85. Rewards:
  86. 1:
  87. RewardCategory: 'Daily'
  88. RewardName: 'First'
  89. 2:
  90. RewardCategory: 'Daily'
  91. RewardName: 'Second'
  92. 3:
  93. RewardCategory: 'Daily'
  94. RewardName: 'Third'
  95. BroadcastMessage:
  96. - '&9----------&e ========== &6Smelt&fRapidité &e========== &9----------'
  97. - '&6Félicitations à ces Meilleur Joueurs de ces dernières 24h!'
  98. - '&eLa première place revient à &3[1name] avec [1points]!'
  99. - '&eLa seconde place revient à &3[2name] avec [2points]!'
  100. - '&ela troisième place revient à &3[3name] avec [3points]!'
  101. - '&9----------------------------------------------'
  102. 'ThisIsWeekly':
  103. Mode: All
  104. RewardTimeRange: 10080
  105. AnnounceOn: '16:00:00'
  106. WeekDays:
  107. - 'Sunday'
  108. MonthDays:
  109. - All
  110. Rewards:
  111. 1:
  112. RewardCategory: 'Weekly'
  113. RewardName: 'All'
  114. 2:
  115. RewardCategory: 'Weekly'
  116. RewardName: 'All'
  117. 3:
  118. RewardCategory: 'Weekly'
  119. RewardName: 'All'
  120. BroadcastMessage:
  121. - '&9----------&e ========== &6Smelt&fRapidité &e========== &9----------'
  122. - '&6Félicitations à ces Meilleur Joueurs de ces 7 derniers jours!'
  123. - '&eLa première place revient à &3[1name]!'
  124. - '&eLa seconde place revient à &3[2name]!'
  125. - '&ela troisième place revient à &3[3name]!'
  126. - '&9----------------------------------------------'
  127. 'ThisIsMonthly':
  128. Mode: All
  129. RewardTimeRange: 40320
  130. AnnounceOn: '16:00:00'
  131. WeekDays:
  132. - All
  133. MonthDays:
  134. - 1
  135. Rewards:
  136. 1:
  137. RewardCategory: 'Monthly'
  138. RewardName: 'Second'
  139. 2:
  140. RewardCategory: 'Monthly'
  141. RewardName: 'Second'
  142. 3:
  143. RewardCategory: 'Monthly'
  144. RewardName: 'Second'
  145. 4:
  146. RewardCategory: 'Monthly'
  147. RewardName: 'Second'
  148. 5:
  149. RewardCategory: 'Monthly'
  150. RewardName: 'Second'
  151. 6:
  152. RewardCategory: 'Monthly'
  153. RewardName: 'Second'
  154. 7:
  155. RewardCategory: 'Monthly'
  156. RewardName: 'Second'
  157. 8:
  158. RewardCategory: 'Monthly'
  159. RewardName: 'Second'
  160. 9:
  161. RewardCategory: 'Monthly'
  162. RewardName: 'Second'
  163. 10:
  164. RewardCategory: 'Monthly'
  165. RewardName: 'Second'
  166. BroadcastMessage:
  167. - '&9----------&e ========== &6Smelt&fRapidité &e========== &9----------'
  168. - '&6Félicitations à ces Meilleur Joueurs du mois dernier!'
  169. - '&La première place revient à &3[1name]!'
  170. - '&eLa seconde place revient à &3[2name]!'
  171. - '&ela troisième place revient à &3[3name]!'
  172. - '&eEt le reste dans l''ordre: &3[4name]&e, &3[5name]&e, &3[6name]&e, &3[7name]&e, &3[8name]&e, &3[9name]&e, &3[10name]&e,!'
  173. - '&9----------------------------------------------'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement