Error inventory

04/16/2020 03:56 Worshiper#1
@
04/16/2020 20:55 zalo0944172680#2
remove item from item maill F10. add item in npc
04/16/2020 23:12 JohnDornel^#3
Quote:
Originally Posted by zalo0944172680 View Post
remove item from item maill F10. add item in npc
Please don't. Did you like.. even read the error?

Ontopic:

The returned error comes from this statement
Code:
   IF  [MENTION=1134588]item[/MENTION]ID_To IS NOT NULL AND [MENTION=1134588]item[/MENTION]ID_To <> 0)        
   BEGIN        
    RETURN -1006        
   END
I could be really wrong, but if you have scrolls that are granting items in inventory, you might want to remove that.
04/17/2020 01:04 ZαKuRα#4
Quote:
Originally Posted by zalo0944172680 View Post
remove item from item maill F10. add item in npc
[Only registered and activated users can see links. Click Here To Register...]
04/17/2020 02:07 Worshiper#5
Quote:
Originally Posted by JohnDornel^ View Post
Please don't. Did you like.. even read the error?

Ontopic:

The returned error comes from this statement
Code:
   IF  [MENTION=1134588]item[/MENTION]ID_To IS NOT NULL AND [MENTION=1134588]item[/MENTION]ID_To <> 0)        
   BEGIN        
    RETURN -1006        
   END
I could be really wrong, but if you have scrolls that are granting items in inventory, you might want to remove that.
didint have any scroll in server
04/17/2020 09:46 JohnDornel^#6
You can try tracing the item

SELECT Serial64 FROM _Items WHERE ID64 = 124873

Take the serial64 and use it on LOG_DB.._LogEventItem WHERE Serial64 = @[Only registered and activated users can see links. Click Here To Register...]64 from _items

(you can order by EventTime desc to get the last owner on top of your results), check what actions were done to this item and sooner or later you will figure out the error.

This happened while moving items, and for some reason a slot that was supposed to "accept" an item and before that return its empty, it didn't, instead the slot was full or something along the lines and then you get return -1006.