sr_GameServer.exe ERROR:
Game ERROR:
Any help?
sr_GameServer.exe ERROR:
Game ERROR:
Any help?
I think u have one item bug in your inventory
Failed whit others chars whit inventory clean?
Use this query
Open _Char in sro_vt_shardCode:USE [SRO_VT_SHARD] GO DECLARE @CharID INT = 'YourCharIDHere' DECLARE @TSlots INT = 0 DECLARE @CharSlot INT = 0 SELECT @TSlots = COUNT(Slot) from _Inventory WHERE CharID = @CharID WHILE @CharSlot <= @TSlots BEGIN EXEC [_STRG_DEL_ITEM_NoTX] 1, @CharID, @CharSlot SET @CharSlot = @CharSlot + 1 END
and get your id and put it there in 'YourCharIDHere'
LIKE Me if helped...
Last edited by RenePunik; 30-04-14 at 05:12 PM.