Jump to content
  • 0

Skill Reuse After Olympiad Match End


Question

7 answers to this question

Recommended Posts

  • 0
Posted

Not, rly. In this case you had to dig more :P

 

AbstractOlympiadGame.java

 

 

playerStatusBack(L2PcInstance player)
  • 0
Posted

 

player.getReuseTimeStamp().clear();
player.getDisabledSkills().clear();
player.sendPacket(new SkillCoolTime(player));
  • 0
Posted
player.getReuseTimeStamp().clear();
player.getDisabledSkills().clear();
player.sendPacket(new SkillCoolTime(player));

can u tell me where to put them i cant find the right place.

  • 0
Posted

How to find correct place?

  • join olympiad with 2 players
  • see what happens when the figh is over: do you see a specific message? If yes, then search for that message over eclipse > you found the place > profit
  • 0
Posted
				case TELE_TO_TOWN:
				{
					_game.broadcastPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_MOVED_TO_TOWN_IN_S1_SECONDS).addNumber(_countDown));
					
					delay = getDelay(TELEPORT_TO_TOWN);
					if (_countDown <= 0)
						_state = GameState.CLEANUP;
					
					break;
				}

here?

Guest
This topic is now closed to further replies.


×
×
  • 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..