Jump to content
  • 0

Skill Reuse After Olympiad Match End


iAlreadyExist

Question

Hey guys i was wondering maybe u can help me little bit

maybe u can tell me how i can make skills reuse time to end after olympiad match over?

Edited by haskovo
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

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

 

AbstractOlympiadGame.java

 

 

playerStatusBack(L2PcInstance player)
Link to comment
Share on other sites

  • 0

 

player.getReuseTimeStamp().clear();
player.getDisabledSkills().clear();
player.sendPacket(new SkillCoolTime(player));
Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 0

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
Link to comment
Share on other sites

  • 0
				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?

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...