Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Dev] Server 4.2 Release support

Joined
Sep 7, 2011
Messages
1,323
Reaction score
528
Re: Server 4.2 Release support

Any ideas about this?
Code:
04-05 02:55:00|	szSqlState    = 42000
04-05 02:55:00|	pfNativeError = 8144
04-05 02:55:00|	szErrorMsg    = [Microsoft][ODBC SQL Server Driver][COLOR="#FF0000"][SQL Server]Procedure or function atum_log_insert_total_user has too many arguments specified.[/COLOR]
04-05 02:55:00|	pcbErrorMsg   = 129

04-05 02:55:00|	ODBCRowNumber = 1
04-05 02:55:00|	SSrvrLine     = 1
04-05 02:55:00|	SSrvrMsgState = 2
04-05 02:55:00|	SSrvrSeverity = 16
04-05 02:55:00|	SSrvrProcname = atum_log_insert_total_user
04-05 02:55:00|	SSrvrSrvname  = MIHAI-52E9F83AC

04-05 02:55:00|[DB Error] DBWorkerThreadID( 6060) hstmt(0xAA3618): [COLOR="#FF0000" [USER=860711]Atum[/USER]_log_insert_total_user Failed![/COLOR]

04-05 02:55:00|	szSqlState    = 42000
04-05 02:55:00|	pfNativeError = 8144
04-05 02:55:00|	szErrorMsg    = [Microsoft][ODBC SQL Server Driver][SQL Server]Procedure or function atum_log_insert_total_user has too many arguments specified.
04-05 02:55:00|	pcbErrorMsg   = 129

04-05 02:55:00|	ODBCRowNumber = 1
04-05 02:55:00|	SSrvrLine     = 1
04-05 02:55:00|	SSrvrMsgState = 2
04-05 02:55:00|	SSrvrSeverity = 16
04-05 02:55:00|	SSrvrProcname = atum_log_insert_total_user
04-05 02:55:00|	SSrvrSrvname  = MIHAI-52E9F83AC

04-05 02:55:14|[ERROR] CSPToMPWinSocket Timeout !!
04-05 03:00:00|[DB Error] DBWorkerThreadID( 5120) hstmt(0xAA7DF0): [USER=860711]Atum[/USER]_log_insert_total_user Failed!
and here's the procedure:
Code:
USE [atum2_db_account]
GO
/****** Object:  StoredProcedure [dbo].[atum_PROCEDURE_080827_0087]    Script Date: 04/05/2014 02:55:52 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


--------------------------------------------------------------------------------
-- PROCEDURE NAME	: dbo.atum_PROCEDURE_080827_0087
-- DESC				: -- // 2008-08-27 by cmkwon, ³¯Äõ¸®¸¦ Procedure·Î ¼öÁ¤ - 
--------------------------------------------------------------------------------
ALTER PROCEDURE [dbo].[atum_PROCEDURE_080827_0087]
AS
	UPDATE dbo.td_account
	SET ConnectingServerGroupID = 0;

Too many arguments? I cannot see too many arguments...
 
Retired (Goddamn idiots)
Joined
Dec 3, 2003
Messages
391
Reaction score
483
Re: Server 4.2 Release support

It means that 1 or more arguments have been passed to the procedure and your procedure was not set up to handle it accordingly.
On a side note, the procedure you're showing here is not the one mentioned in your log files.
 

hi5

Newbie Spellweaver
Joined
Aug 24, 2011
Messages
70
Reaction score
11
Re: Server 4.2 Release support

Code:
USE [atum2_db_account]
GO

/****** Object:  StoredProcedure [dbo].[atum_log_insert_total_user]    Script Date: 05.04.2014 7:38:57 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

    CREATE PROCEDURE [dbo].[atum_log_insert_total_user]
        @i_ServerGroupName            VARCHAR(20),    
        @i_MGameServerID            INT,
        @i_UserCount                INT,
        @i_nUserCountsOtherPublisherConncect                INT
    AS
        INSERT INTO atum_log_total_user
        VALUES (GetDate(), @i_ServerGroupName, @i_MGameServerID, @i_UserCount, @i_nUserCountsOtherPublisherConncect)

GO



Code:
USE [atum2_db_account]
GO

/****** Object:  Table [dbo].[atum_log_total_user]    Script Date: 05.04.2014 7:38:44 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[atum_log_total_user](
    [Time] [datetime] NULL,
    [ServerGroupName] [varchar](20) NULL,
    [MGameServerID] [int] NULL,
    [UserCount] [int] NULL,
    [UserCountsOtherPublisherConncect] [int] NULL
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO
 
Joined
Sep 7, 2011
Messages
1,323
Reaction score
528
Re: Server 4.2 Release support

I realized that exist an error in PreServer logs as
Code:
04-05 10:33:36|[ERROR] CSPToMPWinSocket Timeout !!
Meanwhile, in FieldServer start to spam this:
Code:
04-05 10:33:58|CVMem::AllocVMem VirtualAlloc() success, TypeSize[ 1508] PoolCnt[ 1002] CommitSize[ 1511424] vectorSize[3] Address Range(0x7EEA0000 ~ 0x7F011000)
[COLOR="#FF0000"]04-05 10:33:58|  [Notify] LogError, Index(  2) CLogWinSocket(0x1337010) SendBufferSize( 501) 
04-05 10:33:58|  [Notify] LogError, Index(  2) CLogWinSocket(0x1337010) SendBufferSize( 502) 
04-05 10:33:58|  [Notify] LogError, Index(  2) CLogWinSocket(0x1337010) SendBufferSize( 503) [/COLOR]
with different BufferSize()
 
Newbie Spellweaver
Joined
Oct 18, 2011
Messages
36
Reaction score
0
Re: Server 4.2 Release support

Hi,

you have an idea or it may come:
lykia - [Dev] Server 4.2 Release support - RaGEZONE Forums

lykia - [Dev] Server 4.2 Release support - RaGEZONE Forums


thanks in advance for your help
 
Joined
Sep 7, 2011
Messages
1,323
Reaction score
528
Re: Server 4.2 Release support

I realized that exist an error in PreServer logs as
Code:
04-05 10:33:36|[ERROR] CSPToMPWinSocket Timeout !!
Meanwhile, in FieldServer start to spam this:
Code:
04-05 10:33:58|CVMem::AllocVMem VirtualAlloc() success, TypeSize[ 1508] PoolCnt[ 1002] CommitSize[ 1511424] vectorSize[3] Address Range(0x7EEA0000 ~ 0x7F011000)
04-05 10:33:58| [Notify] LogError, Index( 2) CLogWinSocket(0x1337010) SendBufferSize( 501)
04-05 10:33:58| [Notify] LogError, Index( 2) CLogWinSocket(0x1337010) SendBufferSize( 502)
04-05 10:33:58| [Notify] LogError, Index( 2) CLogWinSocket(0x1337010) SendBufferSize( 503)
with different BufferSize()

If you make refer to me, I used.
 
Joined
Sep 7, 2011
Messages
1,323
Reaction score
528
Re: Server 4.2 Release support

So any ideas for this?
I think when it tries to check for .atm it goes these errors:

See attachment.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Oct 18, 2011
Messages
36
Reaction score
0
Re: Server 4.2 Release support

i have this this error in Preserver:


04-07 15:15:14|[Notify] elapsed time after turn on !! 38Day 12h:29m:59s
04-07 15:15:14|Pre Server Start
04-07 15:15:14|CVMem::AllocVMem VirtualAlloc() success, TypeSize[ 1508] PoolCnt[ 100] CommitSize[ 151552] vectorSize[1] Address Range(0x7EF80000 ~ 0x7EFA5000)
04-07 15:15:14|CVMem::AllocVMem VirtualAlloc() success, TypeSize[ 1528] PoolCnt[ 101] CommitSize[ 155648] vectorSize[1] Address Range(0x7EF50000 ~ 0x7EF76000)
04-07 15:15:14|CVMem::AllocVMem VirtualAlloc() success, TypeSize[ 1552] PoolCnt[15001] CommitSize[23281664] vectorSize[1] Address Range(0x7D910000 ~ 0x7EF44000)
04-07 15:15:14| ServerGroup: killburne, Enable(1) MGameServerID(10061)
04-07 15:15:15| [Notify] CPreGlobal::OnPacketNotifyOfSPToMPWinSoc# 10000 CWinSocket::WS_CONNECTED wParam(0)
04-07 15:15:15| [Notify] CPreGlobal::InitServerSocket# Starting...
04-07 15:15:15| [Notify] CPreIOCP::IOCPInit# 10000
04-07 15:15:37| [Notify] CPreIOCP::IOCPInit# 11000 updated version files !
04-07 15:15:37| [Notify] CPreIOCP::IOCPInit# 12000 arranged version list !
04-07 15:15:37| [Notify] CPreIOCP::IOCPInit# 13000 connected to db server !
04-07 15:15:37| [Notify] CPreIOCP::IOCPInit# 14000 called CPreIOCP::InitDBTable#
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33516, 0x82EC)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31788, 0x7C2C)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33304, 0x8218)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 30492, 0x771C)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32932, 0x80A4)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32432, 0x7EB0)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31868, 0x7C7C)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33136, 0x8170)
04-07 15:15:37|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33328, 0x8230)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 30968, 0x78F8)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33152, 0x8180)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32624, 0x7F70)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33148, 0x817C)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32536, 0x7F18)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32760, 0x7FF8)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32048, 0x7D30)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32396, 0x7E8C)
04-07 15:15:38|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31092, 0x7974)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 28876, 0x70CC)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33012, 0x80F4)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32724, 0x7FD4)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31380, 0x7A94)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33476, 0x82C4)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32580, 0x7F44)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33436, 0x829C)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31156, 0x79B4)
04-07 15:15:39|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33092, 0x8144)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32820, 0x8034)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33048, 0x8118)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33228, 0x81CC)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33348, 0x8244)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33080, 0x8138)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32084, 0x7D54)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32732, 0x7FDC)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32008, 0x7D08)
04-07 15:15:40|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32900, 0x8084)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33180, 0x819C)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32412, 0x7E9C)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32788, 0x8014)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32272, 0x7E10)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 28484, 0x6F44)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33296, 0x8210)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 31520, 0x7B20)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33572, 0x8324)
04-07 15:15:41|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33016, 0x80F8)
04-07 15:15:42|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32252, 0x7DFC)
04-07 15:15:42|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33672, 0x8388)
04-07 15:15:42|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32148, 0x7D94)
04-07 15:15:42|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 33532, 0x82FC)
04-07 15:15:42|CAtumDBManager::AtumDBWorker_ DWWorkerThread, ThreadID( 32684, 0x7FAC)
04-07 15:15:42| [Notify] CPreIOCP::IOCPInit# 15000 CAtumPreDBManager::Init# !
04-07 15:15:42| [Notify] CPreIOCP::IOCPInit# 16000 CPreTickManager::InitTickManager# !
04-07 15:15:42| [Notify] CPreIOCP::IOCPInit# 17000 CAccountBlockManager::CAccountBlockManager# !
04-07 15:15:42| [Notify] CPreIOCP::IOCPInit# 18000 CPreIOCP::LoadBlockedAccounts# !
04-07 15:15:42| [Notify] CPreIOCP::IOCPInit# 19000 arranged ServerGroupList !
04-07 15:17:15|[ERROR] CSPToMPWinSocket Timeout !!

my table ti_SystemEvent:

USE [atum2_db_account]
GO

/****** Object: Table [dbo].[ti_SystemEvent] Script Date: 07/04/2014 09:14:34 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[ti_SystemEvent](
[AccName] [varchar](25) NULL,
[AccType] [smallint] NULL,
[Password] [varchar](33) NULL,
[SecPassword] [varchar](33) NULL,
[ObjectMonsterUnitKind] [int] NULL,
[NextEventIndex] [int] NULL,
[LastTimeObjectMonsterCreated] [int] NULL,
[EventParam1] [smallint] NULL,
[EventParam2] [smallint] NULL,
[EventParam3] [smallint] NULL,
[EventReceiver] [int] NULL,
[EventType] [int] NULL,
[ObjectMonsterCreated] [int] NULL,
[BossMonster] [int] NULL
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

and my procedure:
USE [atum2_db_account]
GO

/****** Object: StoredProcedure [dbo].[atum_Load_ti_SystemEvent] Script Date: 07/04/2014 09:15:43 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO



--------------------------------------------------------------------------------
-- PROCEDURE NAME : dbo.atum_PROCEDURE_111221_0001
--------------------------------------------------------------------------------
-- exec dbo.atum_Load_ti_SystemEvent 'AccType'

CREATE PROCEDURE [dbo].[atum_Load_ti_SystemEvent]

@i_AccName INT
AS
DECLARE @AccType smallint
DECLARE @i_Password VARCHAR(33)
DECLARE @i_SecPassword VARCHAR(33)
DECLARE @m_nObjectMonsterUnitKind INT
DECLARE @m_NextEventIndex INT
DECLARE @m_dwLastTimeObjectMonsterCreated INT
DECLARE @m_EventwParam1 smallint
DECLARE @m_EventwParam2 smallint
DECLARE @m_EventwParam3 smallint
DECLARE @m_EventReceiver int
DECLARE @m_bEventType int
DECLARE @m_byObjectMonsterCreated int
DECLARE @m_byBossMonster int


GO

I wanted to know if my table is good and if the error come from my table ?

thanks in advance mafiaa19997
 
Last edited:
Junior Spellweaver
Joined
Oct 23, 2013
Messages
162
Reaction score
68
Re: Server 4.2 Release support

Your table maybe its ok but youre procedure its fucked up ya know what does means atum_LOAD_ti_SystemEvent?
but about that:
Code:
[COLOR=#333333][I]04-07 15:17:15|[ERROR] CSPToMPWinSocket Timeout !![/I][/COLOR]
its just because of that fact AuthenticationServer its disabled - just ignore it.


Now i decided to give some tip for Ragezones which dont know how to remove chat welcome message and special commands: ITS JUST XORED AND XOR KEY/ ENCODED STRING ARE BOTH IN BINS. (About chat 'wellcome message; it is only in FieldServer)

Be carefoul when you will change it - its protected but 'protection system' checking only lenght of xored string so you can put your own message(Newbies) or delete it but i wont tell you how to do that because some ppls may dont understood

Cheers and good luck killburne with your 'backdoors'
 
Newbie Spellweaver
Joined
May 23, 2012
Messages
98
Reaction score
16
Re: Server 4.2 Release support

Now i decided to give some tip for Ragezones which dont know how to remove chat welcome message and special commands: ITS JUST XORED AND XOR KEY/ ENCODED STRING ARE BOTH IN BINS. (About chat 'wellcome message; it is only in FieldServer)

Be carefoul when you will change it - its protected but 'protection system' checking only lenght of xored string so you can put your own message(Newbies) or delete it but i wont tell you how to do that because some ppls may dont understood

Cheers and good luck killburne with your 'backdoors'


solved days ago. also thanks for you!!! just encode/decode:thumbup:
 
Newbie Spellweaver
Joined
Feb 4, 2011
Messages
76
Reaction score
2
Re: Server 4.2 Release support

I have problems with Field Server, when NPC Server finished, Field Server crashed i dont know why
Field Server Log
Code:
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3085) SockIdx( 165) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3086) SockIdx( 166) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3087) SockIdx( 167) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4100) SockIdx( 168) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4101) SockIdx( 169) 
04-08 16:18:54|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4400) SockIdx( 170) 
04-08 16:20:12|[ERROR] deadlock : ThreadType(THREAD_CHECK_TYPE_IOCP_WORKER), ThreadId( 8500), TimeGap(78636) StartTick(   5391110) SocketIndex( 168) MessageType[T_FN_MAPPROJECT_START(0x6302)] Parma1( 0) Param2(0)
04-08 16:20:12|[ERROR] deadlock : ThreadType(THREAD_CHECK_TYPE_IOCP_WORKER), ThreadId( 6728), TimeGap(78245) StartTick(   5391501) SocketIndex( 170) MessageType[T_FN_MAPPROJECT_START(0x6302)] Parma1( 0) Param2(0)

NPC Log
Code:
04-08 16:20:17|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10063) (MonsterUID:2047800)
04-08 16:20:17|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10064) (MonsterUID:2047800)
04-08 16:20:17|[ERROR] CIOCP::Worker() UDP ERROR_PORT_UNREACHABLE Error, SocketIndex[ 95] ==> Error[ERROR_PORT_UNREACHABLE]
04-08 16:20:17|Socket  Closed SocketIndex[ 95] PeerIP[   25.96.162.35] Port[6640] MaxWriteBufCounts[   5] ==> reason 5[0X000005]
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(75)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(76)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(77)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(78)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(79)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(80)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(81)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(82)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(83)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(84)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(85)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(86)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(87)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(88)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(89)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(90)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(91)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(92)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(93)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(94)
04-08 16:20:18|[ERROR] CIOCP::Worker() UDP ERROR_PORT_UNREACHABLE Error, SocketIndex[ 96] ==> Error[ERROR_PORT_UNREACHABLE]
04-08 16:20:18|Socket  Closed SocketIndex[ 96] PeerIP[   25.96.162.35] Port[6650] MaxWriteBufCounts[   3] ==> reason 5[0X000005]
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(95)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(96)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(97)
04-08 16:20:19|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(98)
04-08 16:20:20|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(99)

I edited all my DB to put EP4 Monsters Items, MapObjects and Maps
 
Junior Spellweaver
Joined
Oct 23, 2013
Messages
162
Reaction score
68
Re: Server 4.2 Release support

I have problems with Field Server, when NPC Server finished, Field Server crashed i dont know why
Field Server Log
Code:
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3085) SockIdx( 165) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3086) SockIdx( 166) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(3087) SockIdx( 167) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4100) SockIdx( 168) 
04-08 16:18:53|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4101) SockIdx( 169) 
04-08 16:18:54|  [Notify] UDP Socket ready for NPC Server!! MapIndex(4400) SockIdx( 170) 
[COLOR=#ff0000]04-08 16:20:12|[ERROR] deadlock : ThreadType(THREAD_CHECK_TYPE_IOCP_WORKER), ThreadId( 8500), TimeGap(78636) StartTick(   5391110) SocketIndex( 168) MessageType[T_FN_MAPPROJECT_START(0x6302)] Parma1( 0) Param2(0)
04-08 16:20:12|[ERROR] deadlock : ThreadType(THREAD_CHECK_TYPE_IOCP_WORKER), ThreadId( 6728), TimeGap(78245) StartTick(   5391501) SocketIndex( 170) [U]MessageType[T_FN_MAPPROJECT_START(0x6302)] Parma1( 0) Param2(0)[/U][/COLOR]

NPC Log
Code:
04-08 16:20:17|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10063) (MonsterUID:2047800)
04-08 16:20:17|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10064) (MonsterUID:2047800)
04-08 16:20:17|[ERROR] CIOCP::Worker() UDP ERROR_PORT_UNREACHABLE Error, SocketIndex[ 95] ==> Error[ERROR_PORT_UNREACHABLE]
04-08 16:20:17|Socket  Closed SocketIndex[ 95] PeerIP[   25.96.162.35] Port[6640] MaxWriteBufCounts[   5] ==> reason 5[0X000005]
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(75)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(76)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(77)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(78)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(79)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(80)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(81)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(82)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(83)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(84)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(85)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(86)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(87)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(88)
04-08 16:20:17|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(89)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(90)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(91)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(92)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(93)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(94)
04-08 16:20:18|[ERROR] CIOCP::Worker() UDP [COLOR=#ff0000]ERROR_PORT_UNREACHABLE[/COLOR] Error, SocketIndex[ 96] ==> Error[ERROR_PORT_UNREACHABLE]
04-08 16:20:18|Socket  Closed SocketIndex[ 96] PeerIP[   25.96.162.35] Port[6650] MaxWriteBufCounts[   3] ==> reason 5[0X000005]
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(95)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(96)
04-08 16:20:18|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(97)
04-08 16:20:19|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(98)
04-08 16:20:20|CNPCIOCPSocket::MapWorkerEnd_1 ArrayIndex(99)

I edited all my DB to put EP4 Monsters Items, MapObjects and Maps
check map.cfg what you have past 4400
 
Newbie Spellweaver
Joined
Feb 4, 2011
Messages
76
Reaction score
2
Re: Server 4.2 Release support

I dont know why but map 4100 and 4101 dont work and this maps make that field crash.

Is this the cause witch provoque the Field crash?
NPC Log
Code:
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10089) (MonsterUID:2032700)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10090) (MonsterUID:2032700)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10091) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10092) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10093) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10094) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10095) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10096) (MonsterUID:2032800)
 
Junior Spellweaver
Joined
Oct 23, 2013
Messages
162
Reaction score
68
Re: Server 4.2 Release support

I dont know why but map 4100 and 4101 dont work and this maps make that field crash.

Is this the cause witch provoque the Field crash?
NPC Log
Code:
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10089) (MonsterUID:2032700)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10090) (MonsterUID:2032700)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10091) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10092) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10093) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10094) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10095) (MonsterUID:2032800)
04-09 07:18:43|[DEBUG] CNPCMonster::SelectUsingMonsterItem pTmItem is NULL! (MonsterIdx:10096) (MonsterUID:2032800)
ehh what you know about Crystal and NGCInfluence War Systems?
Try to disable these maps if you want just run server but if you want to make it work you have to fix procedures/tables and data in these tables to run it
 
Newbie Spellweaver
Joined
Feb 4, 2011
Messages
76
Reaction score
2
Re: Server 4.2 Release support

ehh what you know about Crystal and NGCInfluence War Systems?
Try to disable these maps if you want just run server but if you want to make it work you have to fix procedures/tables and data in these tables to run it
Ok thank you :)
 
Newbie Spellweaver
Joined
Nov 18, 2012
Messages
58
Reaction score
8
Re: Server 4.2 Release support

hi, someone have a monitor tool for ep 4?. because when i use any omi from ep 4.2 the client works fine, but some items crash client. so i try to use monitor tool for 3.5, but client crash after select a gear. and it´s obvious that it´s for the omi, that have the structure of 3,5 and not of 4.2.

if someone have this tool, please share or send me a mp. my server works fine but, i need that tool to make my omi. and if possible admin tool, cause i use admin tool from 3,5 and work in parts, sometimes have some errors.

:)
 
Junior Spellweaver
Joined
Oct 23, 2013
Messages
162
Reaction score
68
Re: Server 4.2 Release support

Use search funcion, its allready released

TIP - some persons dont know what did they released
 
Back
Top