Esempio n. 1
0
 public Ban(MtaBan ban)
 {
     this.ban = ban;
 }
 internal OnBanAddedEventArgs(MtaBan ban)
 {
     Ban = new Ban(ban);
 }
Esempio n. 3
0
 public static int GetUnbanTime(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public static bool RemoveBan(MtaBan theBan, MtaElement responsibleElement)
 {
     throw new NotImplementedException();
 }
Esempio n. 5
0
 public static bool SetUnbanTime(MtaBan theBan, int theTime)
 {
     throw new NotImplementedException();
 }
Esempio n. 6
0
 public static bool SetBanReason(MtaBan theBan, string theReason)
 {
     throw new NotImplementedException();
 }
Esempio n. 7
0
 public static bool SetBanNick(MtaBan theBan, string theNick)
 {
     throw new NotImplementedException();
 }
Esempio n. 8
0
 public static bool IsBan(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
Esempio n. 9
0
 public static string GetBanUsername(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
Esempio n. 10
0
 public static string GetBanReason(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
Esempio n. 11
0
 internal OnBannedEventArgs(MtaBan ban, MtaElement responsibleBanner)
 {
     Ban = new Ban(ban);
     ResponsiblePlayer = ElementManager.Instance.GetElement <Player>(responsibleBanner);
 }