Some Shaiya Issue's

01/21/2021 19:02 Kiinqz#1
Hello Friends,

I got one Problem maybe someone can help me with it.

Problem One:

When someone got a Buddy Request in Game and accept it, He will get a disconnected.
And the PS_GAME shutdown

Someone know, how to fix that Script or maybe how to exit that Buddy Request Feature ?



Maybe someone can help me out ?




Nice Regrets :pimp:
01/21/2021 19:39 [ADM]_Dephisio#2
Check your logs or post them here if you can't fix it
01/22/2021 07:10 visionthing10#3
Delete dbo FriendsChar and Juse This to Fix this problem

USE [PS_GameData]
GO

/****** Object: Table [dbo].[FriendChars] Script Date: 01/22/2021 06:09:38 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[FriendChars](
[RowID] [int] IDENTITY(1,1) NOT NULL,
[CharID] [int] NOT NULL,
[FriendID] [int] NOT NULL,
[FriendName] [varchar](30) NOT NULL,
[Family] [tinyint] NOT NULL,
[Grow] [tinyint] NOT NULL,
[Job] [tinyint] NOT NULL,
[Memo] [varchar](50) NULL,
[Refuse] [tinyint] NOT NULL,
[CreateDate] [datetime] NULL,
[RefuseDate] [datetime] NULL,
CONSTRAINT [PK_FriendChars] PRIMARY KEY CLUSTERED
(
[CharID] ASC,
[FriendID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

ALTER TABLE [dbo].[FriendChars] ADD CONSTRAINT [DF_Friends_Ban] DEFAULT (0) FOR [Refuse]
GO
01/22/2021 18:30 Kiinqz#4
2021-01-22 18:20:29 1 1 SAgent:isconnect: (4, 64)
2021-01-22 18:20:29 1 1 T=024:20000, RC=64379,RCS=0, RB=1116742,RBS=12, SC=3552,SCS=0, SB=1356729,SBS=15
2021-01-22 18:20:29 ### Disconnect[8072] : Game[1][0x01248EA8], Name=Game01, Addr=127.0.0.1, DBJobEnd=0
2021-01-22 18:20:29 ### PostDispatchDB[8072] : DB_DISPATCHER_EXIT Game[1][0x01248EA8]
2021-01-22 18:20:29 ### OnDispatchDB[5316] : => DB_DISPATCHER_EXIT Game[1][0x01248EA8]
2021-01-22 18:20:29 ### Save[5316] : Game[1][0x01248EA8]
2021-01-22 18:20:29 ### OnDispatchDB[5316] : <= DB_DISPATCHER_EXIT Game[1][0x01248EA8]


This is the Error which we always get !!!

Thank for the Help !!!:mad:
01/23/2021 08:52 Munat#5
try to change ps_dbagent