Jump to content

Recommended Posts

Posted (edited)

Hello, today I want present to you: Rank PvP System

 

COMPATIBILITY

  • L2J-Server

DESCRIPTION

1. PvP System:

  • Added new method for PvP counting. It's secured by time limiter, and basic protections like same IP, clan etc. If time protecion is working then legall kills not rising. If killer kill victim and time is OK, so then I call it "Legal Kill", if killer kill victim again, PvP counter rise but not Legal Kill (Time Protection sorks). All informations are stored in DB. This "Time Protection" should reduce farming. (More: if we set min pvp lvl on 76+ so then it will be hard to farm on bots. Protection should reduce farm on low rate servers. If we set max player kills on: 1, it lock Legal Kills counter after 1 kill, it's mean killer can kill victim only once in game, option can be useful on servers with big online).
  • System works in every place, but is possible to deactivate it in specific areas like: PEACEFUL ZONE.

2. Rank System:

  • Based on PvP System, it's mean, killer can earn exp for kill player, then he rise his rank too if earn 100%. (exp is based on current Rank Points [RP]).
  • Default 42 ranks.
  • Reward for rise up the Rank can be awarded for each level of Rank Points. (List of rewards and minimum rank points for obtain reward in database).
  • Included images for ranks and exp bar (loaded from server side).

3. Reward System:

  • There is 2 reward types: for Legal Kill player, and for Legal Kill player with Rank.
  • Each kill gives special currency called RPC, the RPC can be exchanged for items.
  • Based on PvP System, killer can be rewarded for Legal Kill or not.
  • Standard PvP Rewards, Rank Level Rewards and Rank PvP Rewards are configurable and can be on/off in config.

4. Death Manager:

  • Is allowed to enable Death Manager, it's mean additional buttons in Death PvP Status Window showing details of killer like (CP, HP, MP, equipment (enchant) only for kill moment).

5. War Counter:

  • Count kills if target is in War Clan. Legal kills rules are used.

6. Combo Kill System:

  • Shout messages (local/global) about the killer who doing a combo, all these messages are configurable.
  • Combo system allows multiply Rank Points by special ratio defined in configuration file.

 

7. Configurability:

  • There is over 60 options. Possible is enable/disable system components like: Rewarding system, war counter, combo system, death manager and more.
  • Each Rank, Protections, Times, Messages can be edited by You without programming knowledge.

 

LAST UPDATE

 

v3.8.9 [09.03.2014]:
  + Added PvP Exp and PvP Exp lose options (rank level rewards are protected).
  + Added Rank Skill Reward, it is game skill added for character when he rise the Rank. Definition in rank_pvp_system_rank_skill table.
  + Now RPS Ranks base on Pvp Exp, Total Rank Points are used for information only. 
     PvP Exp = TRP, it is mean all RP are converted to Pvp Exp (Pvp Exp can decrease if enabled).
  + Added new options into configuration file.
  + Added RPC cut off option (new anti-farm protection).
  + Added/Reworked Alt+T option for count the Kills or Legal Kills.
  + Reworked SQL tables. 
     Changed name of rank_pvp_system for rank_pvp_system_pvp and added rank_pvp_system_summary table.
     Moved war fields from rank_pvp_system into summary table.
     Now only one table for Top Lists: rank_pvp_system_top, with new field****: table_id.
     Removed PRIMARY KEY from rank_pvp_system_top_table.
  + Reworked/Optimized core classes.
  + Renamed some classes.
  + Reworked/Optimized rank rewards table.
  + Fixed Rank Level Rewards.
  + Fixed RankPvpSystemEnabled option. Turn off RPS totally if FALSE.

 

MOVIE

DOWNLOAD

 

 

HOW TO CLEAR THE L2-CLIENT IMAGE-CACHE

  • Create .bat file and place it in Linage II folder.
  • Paste this code: del .\SysTextures\Crest.utx
  • Done. We removed all RPS images from L2-Client cache.
  • Or You can remove the Crest.utx file from SysTextures folder manualy.
Edited by << Masterio >>
  • Like 1
  • Thanks 1
  • Upvote 7
Posted

nice but i get warning at

 

if(activeChar.isInsideZone(Byte.parseByte(CustomConfig.CUSTOM_PVP_DEATH_MANAGER_RESTRICTED_ZONES_IDS.get(i)))){

 

 

( The method isInsideZone(ZoneId) in the type L2Character is not applicable for the arguments (byte) )

Posted

its mean the argument must be other type than Byte, try parse to Integer, or check the method parameter type.

Try for Integer:

 

if(activeChar.isInsideZone(Byte.parseByte(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){

 

change for:

 

if(activeChar.isInsideZone(Integer.parseInteger(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){

 

All zones in latest revision l2j are Byte type.

Posted

its mean the argument must be other type than Byte, try parse to Integer, or check the method parameter type.

Try for Integer:

 

if(activeChar.isInsideZone(Byte.parseByte(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){

 

change for:

 

if(activeChar.isInsideZone(Integer.parseInteger(CustomConfig.CUSTOM_PVP_RESTRICTED_ZONES_IDS.get(i)))){

 

All that codes are inside CustomPvpSystem class.

Lines 529 and 545.

 

All zones in latest revision l2j are Byte type.

Posted

nice but i get warning at

 

if(activeChar.isInsideZone(Byte.parseByte(CustomConfig.CUSTOM_PVP_DEATH_MANAGER_RESTRICTED_ZONES_IDS.get(i)))){

 

 

( The method isInsideZone(ZoneId) in the type L2Character is not applicable for the arguments (byte) )

 

public static FastList<String> CUSTOM_PVP_RESTRICTED_ZONES_IDS = new FastList<String>();

 

why are you waiting for a byte or integer return on a string variable? but since parsing string is not allowed in java parseinteger should have been working. otherwise you need a well coded regex to parse that var

 

or this might work:

 

 

 String splitter="[,]";
    String [] custompvprestr = CUSTOM_PVP_RESTRICTED_ZONES_IDS.split(splitter);

Posted

maybe you not imported correctly diff patch.

 

I checked all the diff but still does not work, I am using stable version hi5.Puedes check if it works in this version.thanks!

Posted

i used latest l2jServer for hi5, so its works :D try update svn to 1.7.7 version.

 

Problem classs customconfig                     

 

line config.java

 

 

+

+ CustomConfig.load();

 

Guest
This topic is now closed to further replies.



  • Posts

    • From Salvation onwards I think you need a patched nwindow.dll that allows such modifications, try to see if you get what you need here: https://drive.google.com/drive/u/1/folders/1LLbQFGf8KlR-O0Iv5umfF-pwZgrDh9bd
    • hello everyone! I am wanting to save the files (Ini. - Data - ) of the EP5 Client: Salvation... But they generate the error "corrupt files"... I tried several versions of L2FileEditor without good results. I need help! Thank you!
    • Opening December 6th at 19:00 (GMT +3)! Open Beta Test from November 30th!   https://l2soe.com/   🌟 Introducing L2 Saga of Eternia: A Revolution in Lineage 2 High Five! 🌟   Dear Lineage 2 enthusiasts, Prepare to witness the future of private servers! L2 Saga of Eternia is not just another High Five project—it’s a game-changing experience designed to compete with the giants of the Lineage 2 private server scene. Built for the community, by the community, we’re here to raise the bar in quality, innovation, and longevity. What Sets Us Apart? 💎 No Wipes, Ever Say goodbye to the fear of losing your progress. Our server is built to last and will never close. Stability and consistency are our promises to you. ⚔️ Weekly New Content Our dedicated development team ensures fresh challenges, events, and updates every week. From custom quests to exclusive features, there will always be something exciting to explore. 💰 No Pay-to-Win Skill and strategy matter most here. Enjoy a balanced gameplay environment where your achievements come from effort, not your wallet. 🌍 A Massive Community With 2000+ players expected, join a vibrant and active community of like-minded adventurers ready to conquer the world of Aden. 🏆 Fair and Competitive Gameplay Our systems are designed to promote healthy competition while avoiding abusive mechanics and exploits. 🔧 Professional Development From advanced bug fixes to carefully curated content, we pride ourselves on smooth performance, no lag, and unparalleled server quality. Key Features Chronicle: High Five with unique interface Rate: Dynamic x10 rates Class Balance: Carefully fine-tuned for a fair experience PvP Focused: PvP Ranking & aura display effect for 3 Top PvPers every week Custom Events: Seasonal and permanent events to keep you engaged Additional Features:   Custom Endgame Content: Introduce unique dungeons, raids, or zones unavailable in other servers. Player-Driven Economy: Implement a strong market system and avoid overinflated drops or rewards. Epic Siege Battles: Announce special large-scale sieges and PvP events. Incentives for Streamers and Clans: Attract influencers and big clans to boost server publicity. Roadmap Transparency: Share a public roadmap of planned updates to build trust and excitemen   Here you can read all the features: https://l2soe.com/features   Video preview: Join the Revolution! This is your chance to be part of something legendary. L2 Saga of Eternia is not just a server; it’s a movement to redefine what Lineage 2 can be. Whether you’re a seasoned veteran or a newcomer to the world of Aden, we invite you to experience Lineage 2 at its finest.   Official Launch Date: December 6th 2024 Website: https://l2soe.com/ Facebook: https://www.facebook.com/l2soe Discord: https://discord.com/invite/l2eternia   Let’s build the ultimate Lineage 2 experience together. See you in-game! 🎮
    • That's like a tutorial on how to run l2 on MacOS Xd but good job for the investigation. 
    • small update: dc robe set sold   wts adena 1kk = 1.5$ 
  • Topics

×
×
  • Create New...