Ejemplo n.º 1
0
 public void Delete(byte slot)
 {
     this.account.characters.Remove(slot);
     MySQLTool.Delete("chars", "charID", this.cID);
     MySQLTool.Delete("chars_eq", "charID", this.cID);
     MySQLTool.Delete("chars_inv", "charID", this.cID);
     MySQLTool.Delete("chars_cargo", "charID", this.cID);
     MySQLTool.Delete("chars_skill", "charID", this.cID);
     MySQLTool.Delete("chars_sbar", "charID", this.cID);
 }