PDA

View Full Version : |Tutorial| Corrigir bug de não salvar skills.



Mentor
01/11/2014, 11:36 PM
desligue o server e faça bkp de segurança antes.

rode isso no query analizer:


if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[OptionData]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[OptionData]
GO

CREATE TABLE [dbo].[OptionData] (
[Name] [varchar] (10) COLLATE Latin1_General_CI_AS NOT NULL ,
[SkillKey] [binary] (30) NULL ,
[GameOption] [Tinyint] NULL ,
[Qkey] [tinyint] NULL ,
[Wkey] [tinyint] NULL ,
[Ekey] [tinyint] NULL ,
[ChatWindow] [tinyint] NULL ,
[Rkey] [tinyint] NULL ,
[QWERLevel] [int] NULL
) ON [PRIMARY]
GO

Creditos:
levelx