diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Olympiad.ini b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Olympiad.ini index 0afb5002d3..e792b20e1e 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Olympiad.ini @@ -39,6 +39,14 @@ AltOlyWPeriod = 604800000 # Default: 86400000 AltOlyVPeriod = 86400000 +# Points for reaching Noblesse for the first time +# Default: 10 +AltOlyStartPoints = 10 + +# Points every week +# Default: 10 +AltOlyWeeklyPoints = 10 + # Required number of participants for Classed and Non-Classed matches, Default 5 & 9 # Default: 5 AltOlyClassedParticipants = 5 diff --git a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java index c56392e360..8a1e4453e6 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java @@ -2455,6 +2455,8 @@ public class Config ALT_OLY_BATTLE = Olympiad.getLong("AltOlyBattle", 360000); ALT_OLY_WPERIOD = Olympiad.getLong("AltOlyWPeriod", 604800000); ALT_OLY_VPERIOD = Olympiad.getLong("AltOlyVPeriod", 86400000); + ALT_OLY_START_POINTS = Olympiad.getInt("AltOlyStartPoints", 10); + ALT_OLY_WEEKLY_POINTS = Olympiad.getInt("AltOlyWeeklyPoints", 10); ALT_OLY_CLASSED = Olympiad.getInt("AltOlyClassedParticipants", 5); ALT_OLY_NONCLASSED = Olympiad.getInt("AltOlyNonClassedParticipants", 9); ALT_OLY_REG_DISPLAY = Olympiad.getInt("AltOlyRegistrationDisplayNumber", 100);