(Fix) Event Castle Siege cause server crash
Hi,
First of all I want to apologize for my terrible English . I am using Google translate .
Ok, Im using Files Namech Project (Season 2, korean protocol) and all this time been trying to solve the only problem that I have , but I find it impossible. The problem is that the server crash on Castle Siege event is running, only when having many users without throwing any message or even in the logs. The event is completed without problems when there are few users (less than 10).
I'm sure there's a way to fix it with the source files. I have some of the same files but a little older version (4.21).
Release files: https://forum.ragezone.com/f197/exce...v5-0-a-816654/
Download Sources: NaMEch Sources 4.2.1 - Download - 4shared
I can pay for job if anybody It's interested. Please contact me on PM.
Thanks.
Re: (Fix) Event Castle Siege cause server crash
its not possible to get crashed and dont have any error log in files.. not just GS, in general dayaservers and exdb also
Re: (Fix) Event Castle Siege cause server crash
I have seen logs of Dataserver2 when the last time the GS_CS be crashed and there is the following messages. It is the only message that appears.
Quote:
07:39:02p EXEC WZ_CS_GetOwnerGuildMaster 0
GetQueuedCompletionStatus failed with error 64
2 server delete
GetQueuedCompletionStatus failed with error 64
3 server delete
StateMode Change 0
I found a guide to repair the error I think, but the images are not working. You know how it is ?
https://forum.ragezone.com/f196/getq...win2k3-511364/
Re: (Fix) Event Castle Siege cause server crash
maybe you can try changing your ConnectServer mate..what u have? by BoR? or default CS?
also what WINDOWS u have exactly? like ppl replied in windows with sp2 the problem persists.
Re: (Fix) Event Castle Siege cause server crash
I have WebZen cs
http://i.imgur.com/NDBmfn5.png
and Windows Server 2003 Enterprise Edition R2 SP1. I alredy try whit others Windows whit different SP but crash anyway.
I'm gonna try with other Connect Server in next Castle Siege..
Re: (Fix) Event Castle Siege cause server crash
well try zTeamConnectServer or BoR cONNECTServer.
Re: (Fix) Event Castle Siege cause server crash
Re: (Fix) Event Castle Siege cause server crash
well why u use namech 4.2.1 sources? if version last is 5.0.1 u must use the gs_cs version from that version..
i didnt had any issues with it so i cant help u, i had used win 2003 sp2/ win 2008 and no crash.
Re: (Fix) Event Castle Siege cause server crash
I use both versions but crash a little less in 4.2.1.
Maybe i can test v5 whitout any config... But really I do not think it works
Re: (Fix) Event Castle Siege cause server crash
Quote:
Originally Posted by
Thorninaron
I have seen logs of Dataserver2 when the last time the GS_CS be crashed and there is the following messages. It is the only message that appears.
I found a guide to repair the error I think, but the images are not working. You know how it is ?
https://forum.ragezone.com/f196/getq...win2k3-511364/
Try to check this procedure WZ_CS_GetOwnerGuildMaster at your DB.
Re: (Fix) Event Castle Siege cause server crash
I think they are well. Here is:
Quote:
/****** Object: Stored Procedure dbo.WZ_CS_GetOwnerGuildMaster Script Date: 28.11.2008 19:52:26 ******/
CREATE PROCEDURE WZ_CS_GetOwnerGuildMaster
@iMapSvrGroup SMALLINT
As
Begin
BEGIN TRANSACTION
SET NOCOUNT ON
IF EXISTS ( SELECT MAP_SVR_GROUP FROM MuCastle_DATA WITH (READUNCOMMITTED)
WHERE MAP_SVR_GROUP = @iMapSvrGroup)
BEGIN
DECLARE @iIsCastleOccupied TINYINT
DECLARE @szGuildName VARCHAR(8)
SELECT @iIsCastleOccupied = CASTLE_OCCUPY, @szGuildName = OWNER_GUILD FROM MuCastle_DATA WHERE MAP_SVR_GROUP = @iMapSvrGroup
IF (@iIsCastleOccupied = 1)
BEGIN
IF (@szGuildName <> '')
BEGIN
IF EXISTS ( SELECT G_Master FROM Guild WITH (READUNCOMMITTED)
WHERE G_Name = @szGuildName)
BEGIN
SELECT 1 As QueryResult, @szGuildName As OwnerGuild, G_Master As OwnerGuildMaster FROM Guild WITH (READUNCOMMITTED) WHERE G_Name = @szGuildName
END
ELSE
BEGIN
SELECT 4 As QueryResult, '' As OwnerGuild, '' As OwnerGuildMaster
END
END
ELSE
BEGIN
SELECT 3 As QueryResult, '' As OwnerGuild, '' As OwnerGuildMaster
END
END
ELSE
BEGIN
SELECT 2 As QueryResult, '' As OwnerGuild, '' As OwnerGuildMaster
END
END
ELSE
BEGIN
SELECT 0 As QueryResult, '' As OwnerGuild, '' As OwnerGuildMaster
END
IF(@@Error <> 0 )
ROLLBACK TRANSACTION
ELSE
COMMIT TRANSACTION
SET NOCOUNT OFF
End
GO
Re: (Fix) Event Castle Siege cause server crash
Re: (Fix) Event Castle Siege cause server crash
Those solutions rarely work cus they are kind of outdated.
Re: (Fix) Event Castle Siege cause server crash
Quote:
Originally Posted by
brunohkbx
I also found but images don't work and idk how to do it :(
Quote:
Originally Posted by
KarLi
Those solutions rarely work cus they are kind of outdated.
That's why I do this post. I spected someone could modify the sources and fix it for all comunity we still play season 2 :(
Re: (Fix) Event Castle Siege cause server crash
you can't fix it through sources man, u need ollydbg to fix it, as the old guide link brunohkbx posted, u need to do similar to this, or else you need to keep trying using other OS
also windows server 2003 enterprise might be the issue?
try standard normal edition sp1 instead?