Jump to content
  • 0

remove skills in olympiad


Question

Posted

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

Recommended Posts

  • 0
Posted
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.

  • 0
Posted

i did but it says "remove all hero skills" it doesnt say "remove the skills with the ids blah blah blah".... i mean it removes them by name not by id..... :(

  • 0
Posted

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

 

  • 0
Posted

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?

  • 0
Posted

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)

 

  • 0
Posted

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

  • 0
Posted

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

Guest
This topic is now closed to further replies.
  • Posts

    • Hi everyone, Since I’m no longer interested in L2 servers, if anyone is willing to continue the project, let me know. I’m currently selling the entire project. DM me for more information if you’re genuinely interested. I can offer limited free support for the first couple of months. It is not cheap. The sale includes the domain, the recently fully redesigned website, the updater, the interface, server files with Lucera ext source, and the database (excluding account passwords, emails, and other private information; character data can remain).   Server for test: https://lineage2.gold/download Server Info: https://lineage2.gold/info Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113  
    • You invent yourself a life - bad for you, one of the inner core dev, fernandopm, which worked hard over aCis quests from 2011 to 2016 is argentinian. I teached him back in time to work and make proper quests. My dev team comes from 10+ countries and I'm myself french. "Racist/nationalist" card ? Not working bro.   Not sure why I should thank you to send me questions, and regarding bug reports, so far, I got none of yours in either discord, gitlab, or forums. I'm sorry if you feel "ignored", but that's more a psychanalyst you need to speak with if you put emotions towards someones' appreciation over a forum. I never ignore a bug report, and if so (like skills reports), it's because I got a bigger plan (skills refactor, in that case). In any case, I delivered cookies for the bug report/fix, even if it dated of months, with proper credits over changesets. "Victim card" ? Not really working, but ok, maybe you're "emotional".   I barely make money out of aCis, for the spent time - simply selling my services, or even coding/administrating a minecraft/L2J server would make far more money. Breaking intentionally things would be stupid. If you don't understand I'm not the only one working on that pack, I can't help you. Also, the scale of edits is sometimes extreme - AI L2OFF ? 1800 files added. How do you want everything works in a single shot ? "Exploiting noobz for money" card ? Still not working, or I'm a terrible businessman.   Meanwhile - you shadow advertise your project, L2JOne (since 2017 btw) - you should maybe start by the beginning saying you're a competitor and aCis is actually a spike in your foot. That also explains why you act like that. RusAcis got the exact same strategy, speaking bad of me, saying they got unique fixes (you speak about I break things, they break and recode things 4 times sometimes, btw), but successfully reselling latest revision with poorly executed stuff. "aCis is good, Tryskell is ok, but I solve all issues in extreme low time so I can piss over him" card ? Mmmmhhhh.   Our conversation ends here if you want, I don't force ppl to speak with me if they don't want - hopefully, people would understand I'm not the arrogant one and the one who doesn't want to talk, or even collaborate. :). I understand you got your own project and got no will to improve aCis.   NOTE : I'm extremely happy for your call of ExShowServerPrimitive with getValidGeoLocation, extremely impressive. Arrogant, no. Sarcastic ? Maybe.   Good night everyone.
    • Hi. @GX-Ext, svn does not work. is there anywhere else where we can get source code? Thank you so much.
  • 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..

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