Server.SkillHandlers.Discordance.GetEffect C# (CSharp) Méthode

GetEffect() public static méthode

public static GetEffect ( Mobile targ, int &effect ) : bool
targ Mobile
effect int
Résultat bool
		public static bool GetEffect( Mobile targ, ref int effect )
		{
			DiscordanceInfo info = m_Table[targ] as DiscordanceInfo;

			if ( info == null )
				return false;

			effect = info.m_Effect;
			return true;
		}