Rostein
12-30-2015, 03:03 PM
Hello!
This is my first post on these forums, but I've been part of the xenobot community since tibiabot NG a while back. I've been playing tibia on and off since 6.8 or something like it and I just recently realized that I HATE sorting my dp after a hunt. So I would like to ask for a script that does it for me. I've seen one from Darkstar but I can't seem to find a similar one (https://www.youtube.com/watch?v=0SqfpibDBKE).
My second "request" is a script that looks all the gold that other people throw on the ground, aka other botters that haven't set their scripts and settings correctly. I found a script that I THOUGHT would be what I needed that was originally made for picking up vials in caves (that guy used it for serpents and carniphilia). I have adjusted it slightly but maybe one of the pro scripters could just change it to do what I intended it to. I'm such a nab.
This is the flask script that I tried to edit (note the flaskId is that of gold)
local flaskIds = { 2031 } --Change these
local flaskCont = 'Backpack'
Module.New('vial finder', function()
for x = -1, 1 do
for y = -1, 1 do
if table.find(flaskIds, Map.GetTopTargetObject(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
Cavebot.Stop()
Map.PickupItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z, Container.New(flaskCont):Index(), math.random(0, 19))
wait(100, 200)
Cavebot.Start()
end
end
end
end)
Thanks in advance!
- Rostein
This is my first post on these forums, but I've been part of the xenobot community since tibiabot NG a while back. I've been playing tibia on and off since 6.8 or something like it and I just recently realized that I HATE sorting my dp after a hunt. So I would like to ask for a script that does it for me. I've seen one from Darkstar but I can't seem to find a similar one (https://www.youtube.com/watch?v=0SqfpibDBKE).
My second "request" is a script that looks all the gold that other people throw on the ground, aka other botters that haven't set their scripts and settings correctly. I found a script that I THOUGHT would be what I needed that was originally made for picking up vials in caves (that guy used it for serpents and carniphilia). I have adjusted it slightly but maybe one of the pro scripters could just change it to do what I intended it to. I'm such a nab.
This is the flask script that I tried to edit (note the flaskId is that of gold)
local flaskIds = { 2031 } --Change these
local flaskCont = 'Backpack'
Module.New('vial finder', function()
for x = -1, 1 do
for y = -1, 1 do
if table.find(flaskIds, Map.GetTopTargetObject(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
Cavebot.Stop()
Map.PickupItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z, Container.New(flaskCont):Index(), math.random(0, 19))
wait(100, 200)
Cavebot.Start()
end
end
end
end)
Thanks in advance!
- Rostein