how could it? I am new at this
what I want is to make the gain of skill and status are zero
could you tell me how?
 
Code:
public static bool CheckSkill( Mobile from, Skill skill, object amObj, double chance )
{
	return false;

	//if ( from.Skills.Cap == 0 )
	//	return false;

	//.....other stuffs commented
}
In misc/SkillCheck.cs
 
Back