alla den douleuei katholou oute to 1o reward oute to 2o oute kanena enw exw kanonika ta pvp pou xreiazwntai kai sto gameserver console den bgazei kapoio problima ola trexoun kanonika ti mpwrei na ftaiei ?
configs
+
+#Set true to enable the pvp skill reward system
+EnablePvPSkillReward = false
+
+#Set pvp count for the 1st pvp skill to be awarded
+1stSkillPvPCount = 100
+
+#Set pvp count for the 2nd pvp skill to be awarded
+2ndSkillPvPCount = 200
+
+#Set pvp count for the 3rd pvp skill to be awarded
+3rdSkillPvPCount = 300
+
+#Set pvp count for the 4th pvp skill to be awarded
+4thSkillPvPCount = 400
+
+#Set pvp count for the 5th pvp skill to be awarded
+5thSkillPvPCount = 500
+
+#Set the id of the 1st skill awarded
+1stPvPSkill = 1
+
+#Set the level of the 1st skill awarded
+1stPvPSkillLvl = 1
+
+#Set the id of the 2nd skill awarded
+2ndPvPSkill = 2
+
+#Set the level of the 2nd skill awarded
+2ndPvPSkillLvl = 2
+
+#Set the id of the 3rd skill awarded
+3rdPvPSkill = 3
+
+#Set the level of the 3rd skill awarded
+3rdPvPSkillLvl = 3
+
+#Set the id of the 4th skill awarded
+4thPvPSkill = 4
+
+#Set the level of the 4th skill awarded
+4thPvPSkillLvl = 4
+
+#Set the id of the 5th skill awarded
+5thPvPSkill = 5
+
+#Set the level of the 5th skill awarded
+5thPvPSkillLvl = 5
Config.java
@@ -525,6 +525,23 @@
public static Map<Integer, Integer> CLAN_SKILLS;
public static byte CLAN_LEVEL;
public static int REPUTATION_QUANTITY;
+
+ public static boolean PVP_SKILL_REWARD_ENABLED;
+ public static int PVP_SKILL1;
+ public static int PVP_SKILL2;
+ public static int PVP_SKILL3;
+ public static int PVP_SKILL4;
+ public static int PVP_SKILL5;
+ public static int PVP_SKILL_LVL1;
+ public static int PVP_SKILL_LVL2;
+ public static int PVP_SKILL_LVL3;
+ public static int PVP_SKILL_LVL4;
+ public static int PVP_SKILL_LVL5;
+ public static int COUNT_PVP_1ST;
+ public static int COUNT_PVP_2ND;
+ public static int COUNT_PVP_3RD;
+ public static int COUNT_PVP_4TH;
+ public static int COUNT_PVP_5TH;
REPUTATION_QUANTITY = Integer.parseInt(L2JFrozenettings.getProperty("ReputationScore", "10000"));
+ PVP_SKILL_REWARD_ENABLED = Boolean.valueOf(L2JFrozenettings.getProperty("EnablePvPSkillReward", "false"));
+ COUNT_PVP_1ST = Integer.parseInt(L2JFrozenettings.getProperty("1stSkillPvPCount", "100"));
+ COUNT_PVP_2ND = Integer.parseInt(L2JFrozenettings.getProperty("2ndSkillPvPCount", "200"));
+ COUNT_PVP_3RD = Integer.parseInt(L2JFrozenettings.getProperty("3rdSkillPvPCount", "300"));
+ COUNT_PVP_4TH = Integer.parseInt(L2JFrozenettings.getProperty("4thSkillPvPCount", "400"));
+ COUNT_PVP_5TH = Integer.parseInt(L2JFrozenettings.getProperty("5thSkillPvPCount", "500"));
+ PVP_SKILL1 = Integer.parseInt(L2JFrozenettings.getProperty("1stPvPSkill", "1"));
+ PVP_SKILL2 = Integer.parseInt(L2JFrozenettings.getProperty("2ndPvPSkill", "2"));
+ PVP_SKILL3 = Integer.parseInt(L2JFrozenettings.getProperty("3rdPvPSkill", "3"));
+ PVP_SKILL4 = Integer.parseInt(L2JFrozenettings.getProperty("4thPvPSkill", "4"));
+ PVP_SKILL5 = Integer.parseInt(L2JFrozenettings.getProperty("5thPvPSkill", "5"));
+ PVP_SKILL_LVL1 = Integer.parseInt(L2JFrozenettings.getProperty("1stPvPSkillLvl", "1"));
+ PVP_SKILL_LVL2 = Integer.parseInt(L2JFrozenettings.getProperty("2ndPvPSkillLvl", "2"));
+ PVP_SKILL_LVL3 = Integer.parseInt(L2JFrozenettings.getProperty("3rdPvPSkillLvl", "3"));
+ PVP_SKILL_LVL4 = Integer.parseInt(L2JFrozenettings.getProperty("4thPvPSkillLvl", "4"));
+ PVP_SKILL_LVL5 = Integer.parseInt(L2JFrozenettings.getProperty("5thPvPSkillLvl", "5"));
L2PcInstance.java
_pvpKills = pvpKills;
}
+ public void PvPSkillReward()
+ {
+ if (getPvpKills() >= Config.COUNT_PVP_1ST)
+ {
+ addSkill(SkillTable.getInstance().getInfo(Config.PVP_SKILL1, Config.PVP_SKILL_LVL1));
+ }
+ else if (getPvpKills() >= Config.COUNT_PVP_2ND)
+ {
+ addSkill(SkillTable.getInstance().getInfo(Config.PVP_SKILL2, Config.PVP_SKILL_LVL2));
+ }
+ else if (getPvpKills() >= Config.COUNT_PVP_3RD)
+ {
+ addSkill(SkillTable.getInstance().getInfo(Config.PVP_SKILL3, Config.PVP_SKILL_LVL3));
+ }
+ else if (getPvpKills() >= Config.COUNT_PVP_4TH)
+ {
+ addSkill(SkillTable.getInstance().getInfo(Config.PVP_SKILL4, Config.PVP_SKILL_LVL4));
+ }
+ else if (getPvpKills() >= Config.COUNT_PVP_5TH)
+ {
+ addSkill(SkillTable.getInstance().getInfo(Config.PVP_SKILL5, Config.PVP_SKILL_LVL5));
+ }
+ }
+
+ if(Config.PVP_SKILL_REWARD_ENABLED)
+ {
+ PvPSkillReward();
+ }
+
// apply augmentation bonus for equipped items
for (L2ItemInstance temp : this.getInventory().getAugmentedItems())
Discord Access
2015: 49$
2016: 11.9$
2017: 4.9$
2018: 3.5$
2019: 2.5$
2020: 1.9$
Full Access
Safe With Warranty
To Buy, Contact Me On:
Discord @xdids
Telegram @xdids
To see, Vouches, Stock, Payment Methods, Click Or Go Telegram
Thank you for providing the data.The farm command did not work, but the problem was the same even after installing the interface. The character is ".Shout out "farm".. Bro, I want to bring it to HTML without an interface.. Is there any data on the voice command? Oh, and happy new year!! 🙂
You can buy patched system from @AlisaCodeDragon.
System is not being magically patched, someone does it and it requires some knowledge. If you don't have the knowledge then you should at least have the money.
Question
Ta®oS™
exw auton edw ton kwdika
alla den douleuei katholou oute to 1o reward oute to 2o oute kanena enw exw kanonika ta pvp pou xreiazwntai kai sto gameserver console den bgazei kapoio problima ola trexoun kanonika ti mpwrei na ftaiei ?
Edited by Ta®oS™10 answers to this question
Recommended Posts