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())
ADENA
500 K = 40e
1kk = 70e
3kk = 190e
ITEMS
staff of life = 150e
karmian set = 90e
elven jewls top D = 30e
Orcish Poleaxe+1 best C pole = 680e
any D grade armor on demand
discord
wiz0642_81242
❖Items that are sent by physical delivery are sent using someone else's data. That is, if you are not able to accept the parcel, we will not be able to return it. Please keep this in mind.
READY IN STOCK
PAYMENT SYSTEMS
4x4 io, Weststein, Paysafecard, Paysend, Genome, Conotoxia, Mybrocard, Payz Silver, Pockit UK, NagaPay, Volet com, SpectroCoin, SwissMoney, Yuh, Lydia / Sumeria, Ka.App, Wittix, Western Union, MyGuava, Xapo Bank, Bunq on emulator (DE, NL, FR, ES, IE ibans), Revolut on emulator (UK/EU), ICard, BlackCatCard, Vivid DE, Bankera, Bitsa, Wise EU/UK, N26 DE/ES on emulator, Skrill, Neteller, Trasta, Wirex, Lama, Paysera, Moneyjar
CRYPTOEXCHANGE
BINGX com, Bybit LVL 2, KuCoin, Binance LVL 2, Mexc, Latoken, Poloniex, Bitmart, Kraken, WhiteBit, Quppy, Nexo, Gate, OKX, Paybis, Paxful, Huobi (HTX), xcoins com, Bit2Me
BUSINESS ACCOUNTS
Stripe, Payoneer EU, Wise Business UK/EU, Revolut Business EU/UK, N26 Business DE, Wallester Business EU, Kraken Business Pro, Monzo Business, Vivid Business, Zen Business EU, Millennium Business PL, AirWallex EU/UK, Finom business, PayPal business, Payset business
NATIONAL BANKS / BANKS
BBVA, CommerzBank, ING, Santander, Kaspi Bank, Sberbank, AlfaBank, Tbank, Raiffeisen, mBank, Paribas, Bereke Bank, Kapital Bank
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