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
FREE Loot Sorter
#1
Hello.

It will drop the following items on the specific locations and will also open the next backpacks inside.

local OpenNextBPs = true
local ITEMS_DROP = {
   { Id = 2148, Location = { X = 12345, Y = 12345}},
   { Id = 1234, Location = { X = 12345, Y = 12345}},
   { Id = 4321, Location = { X = 12345, Y = 12345}},

}

local player_z = posz()

for _, item in ipairs(ITEMS_DROP) do
   while itemcount(item.Id) > 0 do
       moveitems(item.Id, ground(item.Location.X, item.Location.Y, player_z), '', 100)
   end
end

if OpenNextBPs then
   local containers = getcontainers()

    for i = 1, #containers do
       local container = containers[i]
       for j = 1, #container.items do
           local item = container.items[j]
           if item ~= nil then
               if itemhasflags(item.id, 4) then
                   openitemslot(item.index, container.index, false)
                   wait(800, 1200)
                   break
               end
           end
       end
   end
end
Reply

#2
work? 
It worked there?

ExecuteScript:Console: 2: '<name>' expected near 'local'
Reply

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

Hello.

It does works, otherwise i would not be posting it.
Make sure you are copying and editing it properly.
Reply

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

Thanks, I'll test and check if I'm editing correctly thanks
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016