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