Find free dp shoud be added. It's kinda weird when my rp is trying to get to dp when there is somone.
Find free dp shoud be added. It's kinda weird when my rp is trying to get to dp when there is somone.
Advance Healer, It is a must the current inbuilt healer is so basic NG almost puts it to shame.Yes I know with scripts you can make it better but the inbuilt healer should be better.
This function is in @Forgee's library! Check it out next time...
[highlight=Lua]Self.ReachDepot = function (tries)
local tries = tries or 3
setWalkerEnabled(false)
local DepotIDs = {3497, 3498, 3499, 3500}
local DepotPos = {}
for i = 1, #DepotIDs do
local dps = Map.GetUseItems(DepotIDs[i])
for j = 1, #dps do
table.insert(DepotPos, dps[j])
end
end
local function gotoDepot()
local pos = Self.Position()
print("Depots found: " .. tostring(#DepotPos))
for i = 1, #DepotPos do
location = DepotPos[i]
Self.UseItemFromGround(location.x, location.y, location.z)
wait(1000, 2000)
if Self.DistanceFromPosition(pos.x, pos.y, pos.z) >= 1 then
wait(5000, 6000)
if Self.DistanceFromPosition(location.x, location.y, location.z) == 1 then
setWalkerEnabled(true)
return true
end
else
print("Something is blocking the path. Trying next depot.")
end
end
return false
end
repeat
reachedDP = gotoDepot()
if reachedDP then
return true
end
tries = tries - 1
sleep(100)
print("Attempt to reach depot was unsuccessfull. " .. tries .. " tries left.")
until tries <= 0
return false
end[/highlight]
- Auto Mount
- It's so annoying try to add a node to a script already done... If I click in some place, the node should be added there, not to the end of the list.
- Looter - Use on Yourself. I'm bottin at Banuta-1 and apes drop health potions... It would be good "Use on yourself" option.
Hello together,
a few suggestions:
1. A skulltimer ( of course the own) would be helpfull
2. When the bot can't take gold or another items anymore, he should try to take the next item in the dead body, because he skips it.
3. Use items from dead body don't function really
Thanks for taking time to read it.
Greetings Junglemaster1992
Last edited by Junglemaster1992; 09-06-2012 at 09:27 PM.
Please Add Auto Mount Script in new update![]()
Dynamic Loot - like, when its killing a monster but is near other corpses, it loots WHILE killing (like we all do without bots).
example:
b88d314e.jpg
it would loot 1 and 2 while attacking 3.
EDIT: Nevermind, I saw today's update. That's it!
Last edited by blocker992; 09-13-2012 at 10:02 AM.
I would like to see a better way to load settings and script.
Example:
For settings, a drop down menu instead of scrolling through the 10000 settings i have.
For scripts, enable the option to have folders, so you can open different folders in de Xenobot/Scripts folder within the Load Scripts UI.
Just my 2 cents![]()
i think good idea will be "stand-node" option in walker
should work like this :
bot will try stand on some smq (x,y,z) but after 3 time when he try go to next walkpoint
this will be easy way to enter portals, and place where you need now use labels like this
elseif(labelName == "beforePortal1")then
wait(3000)
delayWalker(2000)
gotoLabel("afterPortal1")