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
Pick up pots/parcels
#1
People keep putting parcels / pots around my makers at my house to kill them, looking for a script to pick them up or throw them in my house on any sqm around the char

#2
Hello.

Just use search on next time, there are many scripts like this on Forums.

|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.


local BLACK_LIST_ITEMS = { 3503, 3504 } -- Items that you will move... eg: parcel (3503).

local DROP_PLACE = { X = 12345, Y = 54321, Z = 7 } -- Location to move items TO.
local CHARACTER_PLACE = { X = 12345, Y = 54321, Z = 7 } -- Location that your character stands.
local CHECK_AROUND = true -- Check on sqms around your character as well?


local player_x = posx()
local player_y = posy()
local player_z = posz()

if player_x == CHARACTER_PLACE.X and player_y == CHARACTER_PLACE.Y and player_z == CHARACTER_PLACE.Z then
    if CHECK_AROUND then
        for i = -1, 1, 1 do
            for j = -1, 1, 1 do
                local item_sqm = topitem(player_x + i, player_y + j, player_z, false)
                if table.find(BLACK_LIST_ITEMS, item_sqm.id) ~= nil then
                    moveitems(item_sqm.id, ground(DROP_PLACE.X, DROP_PLACE.Y, DROP_PLACE.Z), ground(player_x + i, player_y + j, player_z), 100)
                    wait(300, 500)
                end
            end
        end
    else
        local item_sqm = topitem(player_x, player_y, player_z, false)
        if table.find(BLACK_LIST_ITEMS, item_sqm.id) ~= nil then
            moveitems(item_sqm.id, ground(DROP_PLACE.X, DROP_PLACE.Y, DROP_PLACE.Z), ground(player_x, player_y, player_z), 100)
            wait(300, 500)
        end
    end
end

#3
But what about when cavebotting? i dont have a place where character stands, and i dont know a place to move the objects on. Maybe pick them up to backpack.

Do you have any script to do that?



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016