Пример #1
0
 public static void BeginDesktopTarget(Mobile m)
 {
     if (m != null && !m.Deleted && m.IsOnline())
     {
         MobileSelectTarget.Begin(m, DisplayDesktop, null);
     }
 }
Пример #2
0
 public static void RevokeTitlesTarget(PlayerMobile pm)
 {
     MobileSelectTarget <PlayerMobile> .Begin(pm, (m, t) => RevokeTitles(pm, t), null);
 }
Пример #3
0
 public static void GrantEPLTarget(PlayerMobile pm, int value)
 {
     MobileSelectTarget <PlayerMobile> .Begin(pm, (m, t) => GrantEPL(pm, t, value), null);
 }