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
need script for drop the items to dp
#1
hello just need script to drop items to depo chest for example royal helmet ,dragon scale mail ,dragon slayer .
I have one script but for kasteria dosent work couse depot have diffrent depot chest thank you
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />
Reply

#2
There's a depositer script on LUA Scripts section. It don't even use depot chest directly.
The script that you already have may also work, you just need to change it with the correct depot chest to open. I will be happy to help you to change it properly, but you need to post it here.
Reply

#3
local CHARACTER_LOOT_BP = 'backpack'
local ITEMS = { '3386', '3392', '7402' }


reachgrounditem('locker')
wait(500)
openitem('locker')
wait(1000)

if windowcount('locker') > 0 then
for i = 0, #ITEMS do
while itemcount(ITEMS[i], CHARACTER_LOOT_BP) > 0 do
moveitems(ITEMS[i], 'Locker', CHARACTER_LOOT_BP, 100)
wait(500)
end
end
end
Reply

#4
This will reach locker, open locker, open depot chest, which has the depot boxes then drop items inside a specific depot box directly, without opening it.
local CHARACTER_LOOT_BP = 'backpack'
local ITEMS = { '3386', '3392', '7402' }
local DEPOT_BOX_ID = 8402 --- Depot chest I = 8402



reachgrounditem('locker')
wait(500)

openitem('locker')
wait(1000)

openitem('depot')
wait(1000)

if windowcount('depot chest') > 0 then
    for i = 0, #ITEMS do
        while itemcount(ITEMS[i], CHARACTER_LOOT_BP) > 0 do
            moveitemsonto(ITEMS[i], DEPOT_BOX_ID, 0, 'depot chest', CHARACTER_LOOT_BP, 100)
            wait(500)
        end
    end
end
Reply

#5
YOU ARE THE GOD THANK YOU
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016