DevWilliams

Oly

Apr 13th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. #=============================================================
  2. # Olympiad
  3. #=============================================================
  4. # Olympiad start time hour, default 18 (6PM).
  5. OlyStartTime = 18
  6.  
  7. # Olympiad start time minutes, default 00.
  8. OlyMin = 00
  9.  
  10. # Olympiad competition period, default 6 hours (should be changed by steps of 10mins).
  11. OlyCPeriod = 21600000
  12.  
  13. # Olympiad battle period, default 6 minutes.
  14. OlyBattle = 360000
  15.  
  16. # Olympiad weekly period, default 1 week.
  17. OlyWPeriod = 604800000
  18.  
  19. # Olympiad validation period, default 24 hours.
  20. OlyVPeriod = 86400000
  21.  
  22. # Time to wait before teleported to arena, default: 30 seconds.
  23. OlyWaitTime = 30
  24.  
  25. # Time to wait before battle starts (at 20s characters receive buffs), default: 60 seconds.
  26. OlyWaitBattle = 60
  27.  
  28. # Time to wait before teleported back to town, default: 40 seconds.
  29. OlyWaitEnd = 40
  30.  
  31. # Rewarded points for the first Olympiad cycle, default: 18.
  32. OlyStartPoints = 18
  33.  
  34. # Points allowed every week after first cycle, default: 3.
  35. OlyWeeklyPoints = 3
  36.  
  37. # Required number of matches in order to be classed as hero, default: 9.
  38. OlyMinMatchesToBeClassed = 9
  39.  
  40. # Required number of participants for the class based games, default: 5.
  41. OlyClassedParticipants = 5
  42.  
  43. # Required number of participants for the non-class based games, default: 9.
  44. OlyNonClassedParticipants = 9
  45.  
  46. # Reward for the class based games.
  47. # Format: itemId1-itemNum1;itemId2-itemNum2...
  48. # Default: 6651-50
  49. OlyClassedReward = 6651-50
  50.  
  51. # Reward for the non-class based games.
  52. # Format: itemId1-itemNum1;itemId2-itemNum2...
  53. # Default: 6651-30
  54. OlyNonClassedReward = 6651-30
  55.  
  56. # Rate to exchange points to reward item, default: 1000.
  57. OlyGPPerPoint = 1000
  58.  
  59. # CRPs for heroes in clan, default: 300.
  60. OlyHeroPoints = 300
  61.  
  62. # Noblesse points awarded to Rank 1 members, default: 100.
  63. OlyRank1Points = 100
  64.  
  65. # Noblesse points awarded to Rank 2 members, default: 75.
  66. OlyRank2Points = 75
  67.  
  68. # Noblesse points awarded to Rank 3 members, default: 55.
  69. OlyRank3Points = 55
  70.  
  71. # Noblesse points awarded to Rank 4 members, default: 40.
  72. OlyRank4Points = 40
  73.  
  74. # Noblesse points awarded to Rank 5 members, default: 30.
  75. OlyRank5Points = 30
  76.  
  77. # Maximum points that player can gain/lose on a match, default: 10.
  78. OlyMaxPoints = 10
  79.  
  80. # Olympiad Managers announce each start of fight, default: True.
  81. OlyAnnounceGames = True
  82.  
  83. # Divider for points in classed and non-classed games, default: 3, 5.
  84. OlyDividerClassed = 3
  85. OlyDividerNonClassed = 5
  86.  
  87. # Configure buff for olympiad participants. Format= BuffId-BuffLevel;
  88. OlyWarriorBuffs = 1204-2;1086-1
  89. OlyMageBuffs = 1204-2;1085-1
  90.  
  91. # Maximum number of players per IP address allowed to participate in olympiad.
  92. # Default: 0 (unlimited)
  93. OlyParticipantsPerIP = 0
Advertisement
Add Comment
Please, Sign In to add comment