Server.Engines.PartySystem.Party.Get C# (CSharp) Method

Get() public static method

public static Get ( Server.Mobile m ) : Party
m Server.Mobile
return Party
		public static Party Get( Mobile m )
		{
			if ( m == null )
				return null;

			return m.Party as Party;
		}

Usage Example

        protected override void OnTarget(Mobile from, object o)
        {
            if (o is Mobile m)
            {
                Party p = Party.Get(from);

                if (p == null || p.Leader != from || !p.Contains(m))
                {
                    return;
                }

                if (from == m)
                {
                    from.SendLocalizedMessage(1005446); // You may only remove yourself from a party if you are not the leader.
                }
                else
                {
                    p.Remove(m);
                }
            }
        }
All Usage Examples Of Server.Engines.PartySystem.Party::Get