PHP Code:
CREATE TABLE [dbo].[LGCharact](
[CID] [int] IDENTITY(1,1) NOT NULL,
[AID] [int] NOT NULL,
[CleanName] [varchar](24) NOT NULL,
[Level] [smallint] NOT NULL,
[Sex] [tinyint] NOT NULL,
[CharNum] [smallint] NOT NULL,
[Hair] [tinyint] NULL,
[Face] [tinyint] NULL,
[XP] [int] NOT NULL,
[BP] [int] NOT NULL,
[HP] [smallint] NULL,
[AP] [smallint] NULL,
[FR] [int] NULL,
[CR] [int] NULL,
[ER] [int] NULL,
[WR] [int] NULL,
[head_slot] [int] NULL,
[chest_slot] [int] NULL,
[hands_slot] [int] NULL,
[legs_slot] [int] NULL,
[feet_slot] [int] NULL,
[fingerl_slot] [int] NULL,
[fingerr_slot] [int] NULL,
[melee_slot] [int] NULL,
[primary_slot] [int] NULL,
[secondary_slot] [int] NULL,
[custom1_slot] [int] NULL,
[custom2_slot] [int] NULL,
[RegDate] [datetime] NULL,
[LastTime] [datetime] NULL,
[PlayTime] [int] NULL,
[GameCount] [int] NULL,
[KillCount] [int] NULL,
[DeathCount] [int] NULL,
[DeleteFlag] [tinyint] NULL,
[DeleteName] [varchar](24) NULL,
[head_itemid] [int] NULL,
[chest_itemid] [int] NULL,
[hands_itemid] [int] NULL,
[legs_itemid] [int] NULL,
[feet_itemid] [int] NULL,
[fingerl_itemid] [int] NULL,
[fingerr_itemid] [int] NULL,
[melee_itemid] [int] NULL,
[primary_itemid] [int] NULL,
[secondary_itemid] [int] NULL,
[custom1_itemid] [int] NULL,
[custom2_itemid] [int] NULL,
[QuestItemInfo] [binary](292) NULL
)
But now, I can not delete the char, and sometimes also can not enter the game, I get a black screen. Another error also, is that sometimes the characters are invisible, making it impossible to check the same.