02-15-2022, 07:01 PM
hello my firend i plaing on realera and i have some script from kasteria to bring the items to depot but its dosent work i think the depot id need to be diffrent can u edit this script for me to deposit all loot what i have to dp thank u there is the script
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
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