Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

Silence
MP: 20 HP: 0 Item: 40318 Amount: 1 Duration: 16 Skill Type: Probability
Delay: 500 Cast Invis: No Ignores CM: No Element: None Range: 3 Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 0 Prob Dice: 11 Prob Max: 99
L1Skill Execution:

if ((pc.hasSkillEffect(SILENCE)
		|| pc.hasSkillEffect(AREA_OF_SILENCE) || pc
			.hasSkillEffect(STATUS_POISON_SILENCE)
			|| pc.hasSkillEffect(ELZABE_AREA_SILENCE))
		&& !IntArrays.sContains(CAST_WITH_SILENCE, _skillId)) {
	pc.sendPackets(new S_ServerMessage(285)); // You can't cast a spell in that state.
	return false;
}