Jump to content
  • 0

[HELP]Server Vanganth 1.2.3.5


Question

Posted

At me the following problem.

The server works normally, is started and works without errors but when the Player bowls off or does restart l2Server falls, errors thus anywhere doesn't leave, falls silently.

I checked all broad gulls but anywhere there are no problems.

At me costs Win2003 x64 MSSQL 2005 x64.

All necessary Software is established.

I tried to find a problem and have reached that that the problem in base lin2world in the table user_items and procedure lin_createitems seems

I tried to establish base from assemblage Dvamp the server works with errors but at an exit of their game it doesn't fall, however with its native base it falls.

Who can prompt in what a problem?

Recommended Posts

  • 0
Posted

After crash L2server create this log file "linError.log"

 

A:I:S:E:PE:DI:DE:BO=1.000000:1.000000:1.000000:1.000000:1.000000:0:0:0
L:Y:X:H=0:0:0:0:0
Crashed Thread[3].
Server Up Time : Tue Jun 14 17:15:42 2011
Current Time : Tue Jun 14 17:27:44 2011
Elapsed Time : 0 days 0 hours 12 minutes 2 seconds
IOBufferPool - 39995 / 40000,  PendingWrite 393 bytes [0] 
=============== object report
user[1/0], npc[0/0], item[5/0], usersocket[1]
=============== npc server connection log 
no connect

[(2832) 2011/06/14 17:27:44]: =======================
an Access Violation in module L2Server.exe at 0033:0061fc3b.
start at 2011/6/14 17:15:41
Read from location ffffffff caused an access violation.

Registers:
EAX=00750061 CS=0033 EIP=0061fc3b EFLGS=00010202
EBX=04b7de40 SS=002b ESP=4a49fda0 EBP=03e9dfc0
ECX=03e9dfc0 DS=002b ESI=00000001 FS=0053
EDX=04c599ec ES=002b EDI=00000001 GS=002b
Bytes at CS:EIP:
48 8b 00 ff d0 c6 44 1e 08 00 ff 03 8b 4b 04 8b 
Stack dump:
4a49fda0: 092d3e01 00000000 00403d52 00000000 0e446748 00000000 3e720044 00000000
4a49fdc0: fffffffe ffffffff 00400000 00000000 00a05220 00000000 00062f00 00000000
4a49fde0: 00977230 00000000 0004c158 00000000 00000000 00000000 00624b22 00000000
4a49fe00: 00977230 00000000 00000000 00000000 00a05220 00000000 00400000 00000000
4a49fe20: 00000032 00000000 00000000 00000000 00000003 00000000 00000000 00000000
4a49fe40: 4308b1a4 00000000 fffffffe ffffffff 00000009 00001000 00010000 00000000
4a49fe60: fffeffff 000007ff 0000000f 00000000 00000004 000021d8 00010000 25020006
4a49fe80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
4a49fea0: 00000000 00000000 00000000 00000000 00918960 00000000 00625449 00000000
4a49fec0: 00000000 00000000 00000003 00000000 00000000 00000000 00000000 00000000


ver = Dec 16 2005_22:03:13


GuardInfo : 

[ilExt] Last used packet[0] Ex[0] IOThread [0][47] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

[ilExt] Last used packet[0] Ex[0] IOThread [1][218] (good):  void IOThread_common(void *arglist) -> garbage collect -> inline void CTLPipeBase::Read(CReadCallback *pReadCallback) -> inline void CTLPipeBase::CThreadPipe::Read(CReadCallback *pReadCallback)
    Lock Stack  : 

[ilExt] Last used packet[0] Ex[0] IOThread [2][265] (good):  void IOThread_common(void *arglist) -> garbage collect -> inline void CTLPipeBase::Read(CReadCallback *pReadCallback) -> inline void CTLPipeBase::CThreadPipe::Read(CReadCallback *pReadCallback)
    Lock Stack  : 

[ilExt] Last used packet[46] Ex[0] IOThread [3][297] (ahehe):  void IOThread_common(void *arglist) -> garbage collect -> inline void CTLPipeBase::Read(CReadCallback *pReadCallback) -> inline void CTLPipeBase::CThreadPipe::Read(CReadCallback *pReadCallback)
    Lock Stack  : 

ListenThread [13][109] (good):  void ListenThread_common() -> unsigned __stdcall WaitThread(void *)
    Lock Stack  : 

MainThread [12][297] (good):      Lock Stack  : 

GuardInfo end 



[(2832) 2011/06/14 17:27:44]: *.\ioc.cpp:648(Tue Dec 13 02:52:40 2005) exception

  • 0
Posted

Yes, I already knew that the problem with me.

But I do not understand what exactly is the problem, since I have reinstalled all the software and install different software but nothing works.

The most interesting is that the problem is I have only in the assembly and other assembly-type of Vampire are functioning normally

  • 0
Posted

I found something, if you rename a table in user_item user_item_bak

then the server does not drop when you exit the game, but if there are errors in CacheD

Hence I understand the problem in this table

  • 0
Posted

I found the problem.

The problem was the encoding tables

 

That's originally stood

 

CREATE TABLE [dbo].[user_item] (
  [item_id] int IDENTITY(1, 1) NOT FOR REPLICATION NOT NULL,
  [char_id] int NOT NULL,
  [item_type] int NOT NULL,
  [amount] int NOT NULL,
  [enchant] int NOT NULL,
  [eroded] int NOT NULL,
  [bless] tinyint NOT NULL,
  [ident] int NOT NULL,
  [wished] tinyint DEFAULT 0 NOT NULL,
  [warehouse] int NOT NULL
)
ON [PRIMARY]
GO

 

But it should be

 

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[user_item] (
  [item_id] int IDENTITY(1, 1) NOT FOR REPLICATION NOT NULL,
  [char_id] int NOT NULL,
  [item_type] int NOT NULL,
  [amount] int NOT NULL,
  [enchant] int NOT NULL,
  [eroded] int NOT NULL,
  [bless] tinyint NOT NULL,
  [ident] int NOT NULL,
  [wished] tinyint DEFAULT 0 NOT NULL,
  [warehouse] int NOT NULL
)
ON [PRIMARY]
GO

 

 

  • 0
Posted

No what I described above does not solve the problem.

Server is still falling.

Who has ideas why the server may drop when a player leaves the game.

  • 0
Posted

May-be needed for this assembly which is soft and what that other options?

If there is something that describe how to install and configure the assembly

  • 0
Posted

Perhaps a server crash due to the fact that the server is running on a test machine with the following parameters:

3GB RAM

CPU 2

Win 2003 x64

MSSQL 2005 x64

  • 0
Posted

i saw the error in my little server,when i was changed the Itemdata.txt and the itemID more than 10000,the error showed and server crash when the l2npc.exe runing...i dont knwo why and i ask it with Vanganth,he tell me he didnot limited the  item id...anyway maybe the problem is not the mssql or config,maybe its the Scripts...you could try it...IMHO

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • I created a system of FAKES to improve my GeoEngine, but I'm having problems with blocks. I've tried everything to fix it, but a block going from the inside out bugs the player's movement and freezes them. However, the reverse doesn't cause this bug. If I'm outside and click inside, the path is traced normally, but if it's reversed, it bugs at the fence. I've created several debugs and read all kinds of GeoEngine versions, but I haven't had any success. Can someone give me some insight into graphical data?   When fakes spawn, they are given possible routes, but they don't follow them. If there's a target, instead of following the correctly drawn path, it simply uses a straight line.  
    • The legendary L2Elixir you remember from 2008 is officially back — remastered, refreshed, and reborn! Our x3 Interlude server launched on 28 November, and the community is growing every single day.   🔥 Fresh start 🔥 Active players joining daily 🔥 Long-term project — Licensed for over 5 years from PlayINERA. 🔥 True 2008 nostalgia with modern stability & polish   If you were part of the original Elixir family, this is your chance to relive the magic. If you’re new — welcome to a classic Lineage II experience built with passion, not profit.   Join the battles. Join the nostalgia. Join L2Elixir Reborn. Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs
    • still available?  java version? client  salvation?  accept smarguart¡?
    • 🎉 L2NeverPain StuckSub - GRAND OPENING 12 December 2025🎉 After beta, testing, mistakes, laughs and a lot of PvP, the moment has finally come. L2NeverPain StuckSub is officially opening its gates on 12 December 2025.   ⚔️What to expect: ✦Main Class +2 Stuck Sub system ✦Balanced PvP & custom party farm areas ✦Custom events, bosses and strong rewards ✦Competitive clan scene with castle rewards   📌Until the opening: ✦Create your clans and register them in the Clan-Register channel ✦Invite your friends / old parties / CPs ✦Stay tuned for more information (rates, events, siege times, etc.)   Get your setups ready, prepare your macros and your Discord/voice. On 12 December 2025 20:00 GMT+2, we write the first chapter of NeverPain together. 🔥 https://l2neverpain.com/ https://discord.gg/kNP3UXgkmN
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock