Jump to content
  • 0

remove skills in olympiad


Assassina

Question

hello.

 

ive added a skill for more max mp and every player in my server has that skill (its passive). my problem is that it unbalances oly so is there a way to remove it when players enter to an oly match? just remove the skill and then add it again when the match is over. thats all. is there a way to do it please?

 

i would search for other "remove skills" shares and i would adapt them to oly but i couldnt find any thats why im asking for your help guys.

 

so i say again what i need: i just need when somebody enters to an oly match a certain passive skill he has to be removed. the skill id is 9999 if this helps u :P

 

aaaaa and thanks in advance xD

Link to comment
Share on other sites

Recommended Posts

  • 0
hello.

 

ive added a skill for more max mp and every player in my server has that skill (its passive). my problem is that it unbalances oly so is there a way to remove it when players enter to an oly match? just remove the skill and then add it again when the match is over. thats all. is there a way to do it please?

 

i would search for other "remove skills" shares and i would adapt them to oly but i couldnt find any thats why im asking for your help guys.

 

so i say again what i need: i just need when somebody enters to an oly match a certain passive skill he has to be removed. the skill id is 9999 if this helps u Tongue

 

aaaaa and thanks in advance xD

 

Maybe someone gave you this advice already, but I couldn't read whole thread, so my advice is:

 

Take a look how does remove Hero Skills during olympiad work.

Link to comment
Share on other sites

  • 0

L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

player.removeSkill(sk, false);

 

and

 

L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

player.addSkill(skill, false);

 

Link to comment
Share on other sites

  • 0

L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

player.removeSkill(sk, false);

 

and

 

L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

player.addSkill(skill, false);

 

maybe this would work but eclipse gives an error. could u please tell me in which part of the code in olympiad.java should i add it?

Link to comment
Share on other sites

  • 0

in OlympiadGames.java

protected void removals()
{
              ...
	for (L2PcInstance player : _players)
	{
		try
		{
			// Remove Buffs
			player.stopAllEffectsExceptThoseThatLastThroughDeath();

			// Remove Clan Skills
			if (player.getClan() != null)
			{
				for (L2Skill skill : player.getClan().getAllSkills())
					player.removeSkill(skill, false);
				if (player.getClan().getHasCastle() > 0)
					CastleManager.getInstance().getCastleByOwner(player.getClan()).removeResidentialSkills(player);
				if (player.getClan().getHasFort() > 0)
					FortManager.getInstance().getFortByOwner(player.getClan()).removeResidentialSkills(player);
			}
[color=red]                 L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);
                               player.removeSkill(sk, false);
[/color]
                               ...

 

and

 

protected void PlayersStatusBack()
{
            ...
			// Add Clan Skills
			if (player.getClan() != null)
			{
				for (L2Skill skill : player.getClan().getAllSkills())
				{
					if (skill.getMinPledgeClass() <= player.getPledgeClass())
						player.addSkill(skill, false);
				}
				if (player.getClan().getHasCastle() > 0)
					CastleManager.getInstance().getCastleByOwner(player.getClan()).giveResidentialSkills(player);
				if (player.getClan().getHasFort() > 0)
					FortManager.getInstance().getFortByOwner(player.getClan()).giveResidentialSkills(player);
			}
[color=red]
                               L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);
                               player.addSkill(skill, false);
[/color]

im using l2jinfinity pack (epilogue)

 

Link to comment
Share on other sites

  • 0

lol way toooooooooooo many errors in eclipse..... look:

 

   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1469: illegal start of expression
   [javac] 	                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac] 	                                                                ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1469: illegal start of expression
   [javac] 	                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac] 	                                                                 ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1469: ')' expected
   [javac] 	                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac] 	                                                                      ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1703: illegal start of expression
   [javac]                                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac]                                                                                ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1703: illegal start of expression
   [javac]                                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac]                                                                                 ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1703: unclosed comment
   [javac]                                 L2Skill sk  = SkillTable.getInstance().getInfo(*/9900/*, /*1 /*);
   [javac]                                                                                      ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:2020: reached end of file while parsing
   [javac] } THERE IS ONE MORE ERROR IN HERE BUT THE FORUM CANT RECOGNIZE IT

   [javac]  ^
   [javac] C:\workspace\L2_GameServer_It\java\net\sf\l2j\gameserver\Olympiad.java:1688: 'try' without 'catch' or 'finally'
   [javac]     		  try {
   [javac]     		  ^
   [javac] 8 errors

BUILD FAILED

Link to comment
Share on other sites

  • 0

yes i deleted all the /* */ and i changed something else as well look:

 

in the remove u use this:

 

L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

                                player.removeSkill(sk, false);

 

but in the add skills u use this:

 

                                L2Skill sk  = SkillTable.getInstance().getInfo(*/skill id/*, /*skill lvl /*);

                                player.addSkill(skill, false);

 

i had an error in eclipse because of that but when i changed "skill" to "sk" there was no error. lets just hope it will work in game....... but really really really thank u anyway :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...