Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Depositer on nostalrius
#1
Hello


I can't get a depositer to work on Nostalrius and I have tried several. Am I doing something wrong or is it actually not doable at this time?
Reply

#2
Hello.

You just need an extra step that will open the desired depot chest box, because there are 8 depots on Nostalrius.
Do you mind opening the depot chest (the one that has many depot boxes inside!), run this code on Bot's Console tab and paste results here? I'm kinda busy atm and not close to depot to check depot boxes ids!
print(getcontainers())
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Sure :) 

9217-9210, left to right.
Reply

#4
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Hello.

Thanks mate! Try this script...
You should setup which DEPOT_CHEST you want to use. 1 = depot chest I, 5 = depot chest V, etc.
local CHARACTER_LOOT_BP = 'backpack'

local DEPOT_CHEST = 1
local DEPOSITER_LOOT_MAIN_BP = 'green backpack'
local DEPOSITER_LOOT_ITEMS_BP = 'green backpack'
local DEPOSITER_STACKED_BP = 'yellow parcel'

local ITEMS_LOOT = { 'battle shield', 'battle shield', 'dwarven shield' }
local ITEMS_STACKED = { 'bolt', 'hunting bolt' }





local DEPOT_BOX_ID = 9218 - DEPOT_CHEST

reachgrounditem('locker')
wait(500)
openitem('locker')
wait(1000)
openitem('depot chest', 'locker')
wait(1000)
openitem(DEPOT_BOX_ID, 'depot chest')
wait(1000)

if itemcount(DEPOSITER_LOOT_MAIN_BP, DEPOT_BOX_ID) > 0 then

    local DEPOSITER_LOOT_WINCOUNT = windowcount(DEPOSITER_LOOT_MAIN_BP)

    openitem(DEPOSITER_LOOT_MAIN_BP, DEPOT_BOX_ID)
    wait(1000)

    if windowcount(DEPOSITER_LOOT_MAIN_BP) > DEPOSITER_LOOT_WINCOUNT then

        if itemcount(DEPOSITER_LOOT_ITEMS_BP, DEPOSITER_LOOT_MAIN_BP) > 0 then

            clearlastonto()

            for i = 0, #ITEMS_LOOT do
                while itemcount(ITEMS_LOOT[i], CHARACTER_LOOT_BP) > 0 do
                    moveitemsonto(ITEMS_LOOT[i], DEPOSITER_LOOT_ITEMS_BP, getlastonto(), DEPOSITER_LOOT_MAIN_BP, CHARACTER_LOOT_BP, 100)
                    wait(500)
                end
            end

        end

        higherwindow(DEPOSITER_LOOT_MAIN_BP)
        wait(1000)

    end

end

if itemcount(DEPOSITER_STACKED_BP, DEPOT_BOX_ID) > 0 then
    
    local DEPOSITER_STACKED_WINCOUNT = windowcount(DEPOSITER_STACKED_BP)

    openitem(DEPOSITER_STACKED_BP, DEPOT_BOX_ID)
    wait(1000)

    if windowcount(DEPOSITER_STACKED_BP) > DEPOSITER_STACKED_WINCOUNT then

        stackitems(DEPOSITER_STACKED_BP, false)

        for i = 0, #ITEMS_STACKED do
            while itemcount(ITEMS_STACKED[i], CHARACTER_LOOT_BP) > 0 do

                moveitems(ITEMS_STACKED[i], DEPOSITER_STACKED_BP, CHARACTER_LOOT_BP, 100)
                wait(500)

            end
        end
        
    end

end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016