Jump to content

Recommended Posts

Posted

Its not a big thing.. But before you read this PLEASE note that this is based on PvP Hero Shine system shared here by VaGo and made by some user in l2jforums.Its not all mine!

So what this mod does.. Is when the player reaches X kills without dying ,he gets an custom item/skill (that you choose what to be) and makes him a special effect ID 16 (like you just went from a normal player to a hero ^^) ,and it also announces : "Player X killed Y victims in a row!He is a survivor now!" when he gets the survivor ,and it also announces when he looses it : "Player X died and he lost his survivor mode.".Its not a big thing ,i say it again ,but i learn alot by these shares i make :)

 

L2PcInstance.java

 

Find this :

private boolean _hero = false;

Make a new line and insert this

   /** Survivor Mod Value */
  private int SurvivorKills = 0;

 

Find this

 setPvpKills(getPvpKills() + 1);

 

Make a new line and insert this

 

     // Remove it if he dies..
     SurvivorKills = 0;
           {
              //this.getPlayer().removeSkill(SkillTable.getInstance().getInfo(skillId, skillLvl), false);
              Announcements.getInstance().announceToAll("Player "+target.getName()" died and lost his survivor mode from "+this.getName()+");
              sendMessage("You was so close to the victory..Next time!");
              sendPacket(new UserInfo(this));
           }

 

Find this (around line 5000-5100~)

 

 reviveRequest(this, null, false);

 

Make a new line and insert below it

 

     // Set him a survivor if he meets the conditions

	                SurvivorKills++;
	               
	                // If SurvivorKills > 4 (5+ kills) give him the survivor thingie ;d
	                if(SurvivorKills > 4)
              broadcastPacket(new SocialAction(getObjectId(), 16));
		//addItem("Loot", ITEM ID, ITEM COUNT, this, true);
	                    //addSkill(SkillTable.getInstance().getInfo(SKILLID, SKILL LVL));
              Announcements.getInstance().announceToAll("Player "+this.getName()+" killed 5 victims in a row!Now he's a survivor!");
                                   sendMessage("You are a survivor now!Go kill more n00bz.");
	       broadcastUserInfo();

 

IMPORTANT NOTE!

This WILL NOT give ANYTHING till you set it up properly.

How to set it up?

You will see in my last code the following lines :

			//addItem("Loot", ITEM ID, ITEM COUNT, this, true);
	                    //addSkill(SkillTable.getInstance().getInfo(SKILLID, SKILL LVL));

the " // " before them means its DISABLED.If you wish to enable it ,you have to set it up like :

addItem("Loot", 57, 1, this, true); - 57 is the id (in my case Adena) and the 1 is amount (in my case it gives 1 Adena).

if you want to use the skill method you have to set it up like :

addSkill(SkillTable.getInstance().getInfo(211, 1)); - 211 is the ID of the skill (in my case Boost HP) and 1 is the level of the skill (in my case it gives Boost HP 1lv skill)

NOTE

To remove the skill when it dies ,find this

//removeSkill(SkillTable.getInstance().getInfo(skillId, skillLvl), false);

Remove the // before it AND replace the ID and level of the skill.I`m tired ,going to sleep ,tomorrow i`ll make it configurable and much easyer to use and edit.

 

Credits to : Me , l2jforum (for the hero shine mod that i highly modificated) and VaGo who shared it here.

P.S. I just c/p'ed it in eclipse and tried to compile ,it worked well ,but it needs ingame test.Whoever wants can test it ;)

Posted

does it have protection like if a player kills someone with the same ip the kill doesn't count. :D BTW this is awesome! i will test it and come with feedback! peace

Posted

i tryed to add it but i get some errors...

Announcements.getInstance().announceToAll("Player "+this.getName()+" killed 5 victims in a row!Now he's a survivor!");

Announcements cannot be solved.

activeChar.getObjectId(), 16));

activeChar cannot be solved.

Maybe i did smthing wrong idk. This is the first time i try to compile smth in eclipse.

can you tell me how can i solv that?

Posted

Well as you said is nothing special but it's a really nice mode

good joob leeroy i like it ;)

Agree you did nice jod there , keep up learning java mate.

Posted

Its nothing rly special ,but i learned how to use socialactions by this share and the announce methods.. ;) I make shares so i can learn more by them ,it highly boosts up my knowledge :]

Posted

Hey .. nice share thx. But i have a problem, it's that i implemented but when i kill on pvp it doesnt give me the item and skill (goldbar and super haste). It gives me the item and skill when i die, from mob or pvp.

 

Can anyone help me? :O

  • 4 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • I had friends who played on Elegant and I can confirm it wasn't a bad server. I don't know about the AI bots running around, but in my opinion the price is simply too high. I don't think many people will spend that much money on Lineage 2 files when alternatives like L2Scripts already exist.   Of course it's all about personal preference, but for such an old chronicle the price seems ridiculously expensive. Modern chronicles usually offer more value.   Anyway, I wish you the best of luck with the sale. This is just my personal opinion. Whoever likes it, good for them, and whoever doesn't, that's fine too. Everyone has different preferences.
    • https://l2avokado.com/ Hello everyone,   After some time of development, we've decided to open L2Avokado to the public in its current development stage. We're looking for players who enjoy Interlude and would like to help shape the project before its official release.   This isn't a "launch" announcement. Instead, we're inviting the community to log in, explore the server, test the systems we've built, and provide honest feedback. Whether it's bug reports, balance suggestions, progression ideas, or quality-of-life improvements, we'd love to hear them.   Our goal has always been to create an Interlude server that feels familiar while offering a fresh progression experience. We've intentionally avoided custom weapons, armor, and client modifications. Instead, we've focused on redesigning progression through reworked hunting grounds, quests, crafting, and gameplay systems while remaining compatible with a clean Interlude client.   At this stage, the core progression path has been implemented, including the main hunting grounds, quests, custom systems, and events. However, as the project is still under active development, there will inevitably be bugs, balance issues, and areas that require further polishing.   This is exactly why we'd like your help.   We're looking for players who are willing to: Test gameplay and progression. Report bugs and exploits. Suggest balance improvements. Share ideas for new features or quality-of-life changes. Help us build a server that the community genuinely enjoys playing.   The Client and System downloads are already available on our website, so you can jump straight into the game. We're also working on a dedicated launcher that will simplify installation and future updates.   If you're interested in helping develop a unique Interlude project and want your feedback to genuinely influence the direction of the server, we'd love to have you with us.   We look forward to seeing you in-game and hearing your thoughts on Discord. https://l2avokado.com/
    • Mate your server used to play with full of bots, from where you find that revenue? 
  • 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..