Jump to content
  • 0

Question

Posted (edited)

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 ?

 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())
Edited by Ta®oS™

10 answers to this question

Recommended Posts

  • 0
Posted

oti den douleuoun ta reward pou exw balei ekana kanonika compile kai sto eclipse den bgazei errors

ruthmizw ta pvp to id kai to level apo to skill alla den mou to dunei

  • 0
Posted (edited)

φιλε μου απο τι βλεπω στον κωδικα σου δεν εχεις τι skill να δινει , απο τι καταλαβα ο κωδικας ειναι οταν παιρνει καποια pvp να περνει και skill σωστα? ..Αν ειναι αυτο δεν πρεπει να του λες το id skill που θες να του δωσει? .. και προφανως για να μην υπαρξει κανενα bug καλο θα ηταν να υπαρχει καποιος ελεχος αν υπαρχει αυτο το skill στου παιχτη τα skill μεσα...και αν ειναι skill αυτο που δινει ...

 

Θα μπορουσες να του το δωσεις μεσο database , νομιζω ο κωδικας ισως ειναι πιο ευκολος....αλλα δεν ξερω αν κολλαει το Script μετα...

Edited by BlackDevilDev
  • 0
Posted

φιλε μου απο τι βλεπω στον κωδικα σου δεν εχεις τι skill να δινει , απο τι καταλαβα ο κωδικας ειναι οταν παιρνει καποια pvp να περνει και skill σωστα? ..Αν ειναι αυτο δεν πρεπει να του λες το id skill που θες να του δωσει? .. και προφανως για να μην υπαρξει κανενα bug καλο θα ηταν να υπαρχει καποιος ελεχος αν υπαρχει αυτο το skill στου παιχτη τα skill μεσα...και αν ειναι skill αυτο που δινει ...

 

Θα μπορουσες να του το δωσεις μεσο database , νομιζω ο κωδικας ισως ειναι πιο ευκολος....αλλα δεν ξερω αν κολλαει το Script μετα...

gia auto exei ta configs. twra to protection den xreiazetai afou gia na thelei kati tetoio tha paizei me custom skills

 

 

 

filaraki eisai sigouros oti ekanes compile ? den sou evgale errors sto eclipse ?

kai ektos auto to l2jfrozen-core.jar i opws aliws legete to perases sta libs sou ? 

ean nai kai pali den douleuei den kserw. isws na eitan kalutera na postareis sto forum tou frozen. i sto topic 

pou peires ton kwdika 

Guest
This topic is now closed to further replies.


  • Posts

    • Very nice attempt and good luck with your sales.   Don't let the voices in this topic discourage you. Most of those people are just flexing. So if Celestine decides to write a bootkit or hook system calls or whatever and false-feed your anti-cheat fake info just because it sits in user mode just to go play in a private server with 100 people, I'll tell you one thing:   Who the fuck cares ... 😛   The average player won't / can't make these things, the big players like adrenaline won't bother (yet) (they don't have signed drivers do they ? They also run in user mode I believe). And even if they somehow manage to do so, there's a minority of players who would trust putting this thing on their pc. I wouldn't let anyone tamper with my kernel mode even if he had a signed certificate from Microsoft.    Also, in a scene where collusion has been brought out between bot makers and cheat guards, having many options is a blessing regardless of their strength. It makes colusion, conflict of interest and cartel more difficult, it drains from cheating software creators more resources to focus on more cheat guards, and it gives server owners plurality.    This arms race is a numbers game, you stop 90% of the cheaters you add value to all of us.    A couple of senior devs flexing their powers in a forum are not a concern.   If i'd ever make a server, I would definitelly buy from you, not because you have the best anti-cheat, but because you are not well known yet to be the focus of counter measures.     
    • TILL OPENING LEFT LESS THAN - 2 DAYS ! GRAND OPENING FROM - 10/07/2026, FRIDAY, 20:00 +3 GMT !
    • Add me on discord, lets talk   Discord: splicho
    • Add more information about your project, client, rates etc, this can help you find a developer more easily on your needs!
    • Hey guys! I am working on a new l2 private server and lookin for any developers who may be interested in helping me get it up n running. It would require a ton of work at the beginning, but once I am able to handle things on my own, I can do a lot of the work too. I just need someone who is tech savy to help me get things setup, make serious edits, and help me get this project going.   So far I have the project running on Java through eclipse. I have the server up locally, and pushing to GitHub. I just need help with managing edits to quests, skills, and other random functions to get me rolling.   Please reach out if you are interested!   Some current content I am working on: - Class skill edits - NPC skills, stats, and placements - Quest icons for turn in, completion, pick up etc - Quest logic (i.e. kill x mobs, turn in y amount, trigger a mini solo or mini group boss fights) I can handle the quest texts and story - Ability to more quickly upload changes to inventory, crafting, NPC stats/drops, etc... and gear setup. I would like to quickly add new recipes to shops or mob drops so players can start crafting it themselves
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..