- Joined
- Apr 8, 2008
- Messages
- 2,465
- Reaction score
- 11,167
Put this in query analyzer.Database problem?
When i save skill , switch character and dont save?
Any query or how solved this problems?
Thanks.
USE [MuOnline]
GO
DROP TABLE [dbo].[OptionData];
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[OptionData](
[Name] [varchar](10) NOT NULL,
[GameOption] [int] NULL,
[Qkey] [int] NULL,
[Wkey] [int] NULL,
[Ekey] [int] NULL,
[ChatWindow] [int] NULL,
[Rkey] [int] NULL,
[QWERLevel] [int] NULL,
[SkillKey] [binary](20) NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO