[SR_GameServer] Invalid Inventory Information! OBJDBID[119225] Slot[1] Item[0]
i got this error in gameserver happen to some chars when they are going to put anything in storage they get dc
when i check the dbo.chest i find that the slot 0 has itemid=1 and there is nothing in storage in this chars
use SRO_VT_SHARD
select * from dbo._Chest where ItemID =1
if i do update set itemid=0 that will fix the bug but its keep happen to some other chars does anyone know how i can fix it ?
use SRO_VT_SHARD
update _Chest set ItemID =0 where ItemID= 1
UP
i got this error in gameserver happen to some chars when they are going to put anything in storage they get dc
when i check the dbo.chest i find that the slot 0 has itemid=1 and there is nothing in storage in this chars
use SRO_VT_SHARD
select * from dbo._Chest where ItemID =1
if i do update set itemid=0 that will fix the bug but its keep happen to some other chars does anyone know how i can fix it ?
use SRO_VT_SHARD
update _Chest set ItemID =0 where ItemID= 1
UP