diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Feature.ini b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Feature.ini index 01a7fac22b..2b7452a088 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Feature.ini +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Feature.ini @@ -205,8 +205,11 @@ LevelUp71And75ReputationScore = 75 # Reputation score gained after level obtained (76-80) LevelUp76And80ReputationScore = 90 -# Reputation score gained after level obtained (81+) -LevelUp81PlusReputationScore = 120 +# Reputation score gained after level obtained (81-90) +LevelUp81And90ReputationScore = 120 + +# Reputation score gained after level obtained (91+) +LevelUp91PlusReputationScore = 150 # Reputation score gained after level obtained multiplier LevelObtainedReputationScoreMultiplier = 1.0 diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java index 619790c3b2..88af692bee 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java @@ -410,7 +410,8 @@ public class Config public static int LVL_UP_66_AND_70_REP_SCORE; public static int LVL_UP_71_AND_75_REP_SCORE; public static int LVL_UP_76_AND_80_REP_SCORE; - public static int LVL_UP_81_PLUS_REP_SCORE; + public static int LVL_UP_81_AND_90_REP_SCORE; + public static int LVL_UP_91_PLUS_REP_SCORE; public static double LVL_OBTAINED_REP_SCORE_MULTIPLIER; public static int CLAN_LEVEL_6_COST; public static int CLAN_LEVEL_7_COST; @@ -1569,7 +1570,8 @@ public class Config LVL_UP_66_AND_70_REP_SCORE = Feature.getInt("LevelUp66And70ReputationScore", 63); LVL_UP_71_AND_75_REP_SCORE = Feature.getInt("LevelUp71And75ReputationScore", 75); LVL_UP_76_AND_80_REP_SCORE = Feature.getInt("LevelUp76And80ReputationScore", 90); - LVL_UP_81_PLUS_REP_SCORE = Feature.getInt("LevelUp81PlusReputationScore", 120); + LVL_UP_81_AND_90_REP_SCORE = Feature.getInt("LevelUp81And90ReputationScore", 120); + LVL_UP_91_PLUS_REP_SCORE = Feature.getInt("LevelUp91PlusReputationScore", 150); LVL_OBTAINED_REP_SCORE_MULTIPLIER = Feature.getDouble("LevelObtainedReputationScoreMultiplier", 1.0d); CLAN_LEVEL_6_COST = Feature.getInt("ClanLevel6Cost", 15000); CLAN_LEVEL_7_COST = Feature.getInt("ClanLevel7Cost", 450000); diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/stat/PlayableStat.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/stat/PlayableStat.java index f86fdf6fc4..6c9fde0c24 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/stat/PlayableStat.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/actor/stat/PlayableStat.java @@ -336,9 +336,13 @@ public class PlayableStat extends CreatureStat { reputation += Config.LVL_UP_76_AND_80_REP_SCORE; } - else if ((level >= 81) && (level <= 120)) + else if ((level >= 81) && (level <= 90)) { - reputation += Config.LVL_UP_81_PLUS_REP_SCORE; + reputation += Config.LVL_UP_81_AND_90_REP_SCORE; + } + else if ((level >= 91) && (level <= 120)) + { + reputation += Config.LVL_UP_91_PLUS_REP_SCORE; } }