This is very nice, good job. :)
Printable View
This is very nice, good job. :)
How are we supposed to reach the locker? :(
Did you add skip nearby node function yet? If not, is it coming anytime near future? It's quite necessary for safe botting.
Wow. I knew an update was coming soon, but all the new features are a huge surprise. I was expecting alarms and a few bug fixes. Good work, man ^_^
If The alarms can detect if disconnected does that mean that there is a possible way for the scripter to detect and relog in? (expecting no, but wasnt sure so ill ask anyway)
FUUUUUUUUCCCKKKK YEEEEEEEAAAAAAAAHHHHH
I made this, but didn't tested... it's working?PHP Code:
function openDepot(myPosition, direction)
local depotPos = {x = Self.Position().x, y = Self.Position().y, z = Self.Position().z}
if direction:lower() == "north" then
depotPos.y = depotPos.y - 1
elseif direction:lower() == "south" then
depotPos.y = depotPos.y + 1
elseif direction:lower() == "east" then
depotPos.x = depotPos.x + 1
elseif direction:lower() == "west" then
depotPos.x = depotPos.x - 1
end
Self.UseItemFromGround(depotPos.x, depotPos.y, depotPos.z)
return true
end
function moveItemToDepot(backpackName, itemID, count) --moveItemToDepot(backpackName, itemID [, count])
local locker = Container.GetByName("Locker")
if (locker:isOpen() == false) then
--handle the error~
else
locker:UseItem(0) --open the Depot Chest (first item in the container)
wait(1500) --Wait for 1.5 seconds
local depot = Container.GetByName("Depot Chest")
if (depot:isOpen() == false) then
--handle the error~
else
local backpack = Container.GetByName(backpackName) --should be open by the user, our ammo backpack
if (backpack:isOpen() == false) then
--handle the error
else
while (depot:CountItemsOfID(itemID) > (count or 0)) do
for spot = 0, depot:ItemCount() do
local item = depot:GetItemData(spot)
if (item.id == itemID) then --assassin stars
depot:MoveItemToContainer(spot, backpack:Index(), 0)
wait(500, 1500)
break
end
end
end
end
end
end
end
Thanks Nick. :)
But you can still not refill right? I mean if you bot like cemetery -1and then go the depot to collect more power bolts, does it then work to grab strong manas at the same time?
It can for the moment grab from dp, unable to do sO from the npc tho.