Error checking nickname

08/16/2017 00:47 sayck21#1
Good afternoon epvp community I have the error to verify the nickname of the character I get the error 10053 I do not know if they have to do with the following logs that are presented below thanks for your attention greetings to all


Quote:
PS_DBAGENT__charsave

Quote:
PS_DBAGENT__system


Quote:
PS_GAME__system


Quote:
PS_GAMELOG__system

Quote:
PS_LOGIN__system

Quote:
PS_SESSION__system

Quote:
PS_USERLOG__system
08/16/2017 07:07 MC Flip#2
I don't see anything wrong in the logs. Error 10053 usually means that the client is not compatible with the database, or vice versa.

Those queries might work:

Code:
USE PS_GameDefs
GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO




create Proc [dbo].[AvailiableCharName]
 [MENTION=3898309]charname[/MENTION] varchar(20),
 [MENTION=349074]Avail[/MENTION]iable int OUTPUT

AS

SET NOCOUNT ON

set [MENTION=349074]Avail[/MENTION]iable=1

if exists(select * from ps_gamedata.dbo.chars where charname [MENTION=3898309]charname[/MENTION])
begin
set [MENTION=349074]Avail[/MENTION]iable=0
end





return 

SET NOCOUNT OFF




GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO
Code:
USE [PS_GameData]
GO

/****** Object: Index [IX_Chars_CharName] Script Date: 10/07/2011 17:15:26 ******/
IF EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[Chars]') AND name = N'IX_Chars_CharName')
DROP INDEX [IX_Chars_CharName] ON [dbo].[Chars] WITH ( ONLINE = OFF )
GO

USE [PS_GameData]
GO

/****** Object: Index [IX_Chars_CharName] Script Date: 10/07/2011 17:15:27 ******/
CREATE NONCLUSTERED INDEX [IX_Chars_CharName] ON [dbo].[Chars]
(
[CharName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO