Quote Originally Posted by dondiablo View Post
I got this when the bot tries to deposit items:

Code:
16:53 XenoScript Error:
           Script: [Spheres] Spheres v2.lua
           Line #: 1684
           Chunk: C:\Program Files ?x86??XenoBot?Data?XenoLuaLib.lua
           Error: attempt to call field 'GetItemIDFromDualInput' (a nil
value)
This is an error with user-input and should not be reported as a
bug with XenoBot.
The function where it stucks is:
Code:
    elseif label == "Depot" then
        setWalkerEnabled(false)
        Self.ReachDepot()
        Self.DepositItems({"wand of starstorm", 1}, {"energy soil", 0}, {"berserk potion", 0}, {"small amethyst", 0}, {"great health potion", 0})
        wait(500, 900)
        Self.WithdrawItems(2, {"small enchanted amethyst", 0, 20})
        if Self.ItemCount(678) < 20 then
            gotoLabel("Depot")

This is a bug with Forgee's library. He overwrites the global item class on accident, causing it to break. Before, the Item class wasn't used extensively so this went unnoticed. Now, though, I use it a lot more and so Forgee's library causes issues.