Page 1 of 1

Olympiad(soulshot)

Posted: Sat Jul 03, 2010 2:50 pm
by Ai17
Hi how to fix this problem when you teleport to olympiad , automaticly makes activate soulshot ?

Re: Olympiad(soulshot)

Posted: Sat Jul 03, 2010 3:22 pm
by JIV

Code: Select all

Index: java/com/l2jserver/gameserver/model/olympiad/OlympiadGame.java===================================================================--- java/com/l2jserver/gameserver/model/olympiad/OlympiadGame.java	(revision 4322)+++ java/com/l2jserver/gameserver/model/olympiad/OlympiadGame.java	(working copy)@@ -270,7 +270,7 @@ 				player.checkItemRestriction();  				// Remove shot automation-				player.disableAutoShotsAll();+				//player.disableAutoShotsAll();  				// Discharge any active shots 				if (player.getActiveWeaponInstance() != null) 

Re: Olympiad(soulshot)

Posted: Thu Jul 22, 2010 11:04 am
by Ai17

Code: Select all

				player.checkItemRestriction(); 				// Remove shot automation				Map<Integer, Integer> activeSoulShots = player.getAutoSoulShot();				for (int itemId : activeSoulShots.values())				{					player.removeAutoSoulShot(itemId);					ExAutoSoulShot atk = new ExAutoSoulShot(itemId, 0);					player.sendPacket(atk);				} 				// Discharge any active shots				if (player.getActiveWeaponInstance() != null)				{					player.getActiveWeaponInstance().setChargedSoulshot(L2ItemInstance.CHARGED_NONE);					player.getActiveWeaponInstance().setChargedSpiritsho

Re: Olympiad(soulshot)

Posted: Tue Jul 27, 2010 3:18 pm
by Ai17
so what i need to change ?

Re: Olympiad(soulshot)

Posted: Tue Jul 27, 2010 4:59 pm
by Zoey76
I think you should read this wiki:
http://l2jserver.com/wiki/How_to_Apply_a_Patch

Then check previous JIV post and apply that patch.

PS: that guide is going to help you for the other request you've made in forum already.