Exemple #1
0
 public static void AddAuditEntry(GameClient client, AuditType type, AuditSubtype subType, string oldValue,
                                  string newValue)
 {
     AddAuditEntry(client, (int)type, (int)subType, oldValue, newValue);
 }
Exemple #2
0
 public static void AddAuditEntry(GamePlayer player, AuditType type, AuditSubtype subType, string oldValue,
                                  string newValue)
 {
     AddAuditEntry(player.Client, type, subType, oldValue, newValue);
 }
Exemple #3
0
 public static void AddAuditEntry(AuditType type, AuditSubtype subType, string oldValue, string newValue)
 {
     AddAuditEntry((int)type, (int)subType, oldValue, newValue);
 }
Exemple #4
0
 public static void AddAuditEntry(GameClient client, AuditType type, AuditSubtype subType)
 {
     AddAuditEntry(client, (int)type, (int)subType, "", "");
 }
Exemple #5
0
 public static void AddAuditEntry(GamePlayer player, AuditType type, AuditSubtype subType, string oldValue,
                                  string newValue)
 {
     AddAuditEntry(player.Client, type, subType, oldValue, newValue);
 }
Exemple #6
0
 public static void AddAuditEntry(GameClient client, AuditType type, AuditSubtype subType, string oldValue,
                                  string newValue)
 {
     AddAuditEntry(client, (int)type, (int)subType, oldValue, newValue);
 }
Exemple #7
0
 public static void AddAuditEntry(GameClient client, AuditType type, AuditSubtype subType)
 {
     AddAuditEntry(client, (int)type, (int)subType, "", "");
 }
Exemple #8
0
 public static void AddAuditEntry(AuditType type, AuditSubtype subType, string oldValue, string newValue)
 {
     AddAuditEntry((int)type, (int)subType, oldValue, newValue);
 }
Exemple #9
0
 public static void AddAuditEntry(GameClient client, AuditType type, AuditSubtype subType)
 {
     AddAuditEntry(client, (int)type, (int)subType, string.Empty, string.Empty);
 }