Jump to content
  • 0

Healed Rbs


wirusas1

Question

5 answers to this question

Recommended Posts

  • 0

yes or add a check in the skillhandler to dont effect targets in raidboss instance for ex

 

if (target instanceof L2RaidBoss)

    return false;

 

or something like that

Link to comment
Share on other sites

  • 0

Yup. Another possibility is to do what zunix said:

Open L2Character, find callskill and add (in the proper place):

 
if (target instanceof L2Raidboss)
						{
							if (skill.getSkillType() == L2SkillType.HEAL || skill.getSkillType() == L2SkillType.HEAL_MOB
                                                                || skill.getSkillType() == L2SkillType.HEAL_PERCENT)
							{
								player.sendPacket(ActionFailed.STATIC_PACKET);
								return;
							}
						}

Etc,apply that for all the skill type restrictions.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...