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