(Fix) Event Castle Siege cause server crash

Results 1 to 15 of 15
  1. #1
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    (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.
    Last edited by Thorninaron; 16-09-15 at 06:14 PM.


  2. #2

    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

  3. #3
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    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.

    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/
    Last edited by Thorninaron; 17-09-15 at 10:25 PM.

  4. #4

    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.

  5. #5
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    Re: (Fix) Event Castle Siege cause server crash

    I have WebZen cs



    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..

  6. #6

    Re: (Fix) Event Castle Siege cause server crash

    well try zTeamConnectServer or BoR cONNECTServer.

  7. #7
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    Re: (Fix) Event Castle Siege cause server crash

    Still crashing bro :/

  8. #8

    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.

  9. #9
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    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

  10. #10
    Enthusiast brunohkbx is offline
    MemberRank
    Mar 2014 Join Date
    mov ebx,1Location
    30Posts

    Re: (Fix) Event Castle Siege cause server crash

    Quote Originally Posted by Thorninaron View Post
    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.

  11. #11
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    Re: (Fix) Event Castle Siege cause server crash

    I think they are well. Here is:

    /****** 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

  12. #12
    Enthusiast brunohkbx is offline
    MemberRank
    Mar 2014 Join Date
    mov ebx,1Location
    30Posts

    Re: (Fix) Event Castle Siege cause server crash


  13. #13

    Re: (Fix) Event Castle Siege cause server crash

    Those solutions rarely work cus they are kind of outdated.

  14. #14
    How Do You Want It Thorninaron is offline
    MemberRank
    Oct 2010 Join Date
    294Posts

    Re: (Fix) Event Castle Siege cause server crash

    Quote Originally Posted by brunohkbx View Post
    I also found but images don't work and idk how to do it :(

    Quote Originally Posted by KarLi View Post
    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 :(

  15. #15

    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?



Advertisement