Jump to content

[Updated][Share]Survivor mode!


Recommended Posts

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 ;)

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 :]

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock