
Originally Posted by
spook
can you post this script? i need 2 please

!

Originally Posted by
viser14
+1 to that !
Sorry for the late reply!
Here is the script I used to pot my main char with bot chars.
lua code:
function pumpMana()
local charToPump = Creature.New("Bubble") --name of your main char
local charToPumpPos = charToPump:Position()
local manaId = 238 --id of potion
local backpack = Container.GetByName("browse field")
if (Self.DistanceFromPosition(charToPumpPos.x, charToPumpPos.y, charToPumpPos.z) <= 2) and (Self.Position().z == charToPumpPos.z) then
for spots = 0, backpack:ItemCount() do
local item = backpack:GetItemData(spots)
if (item.id == manaId) then
backpack:UseItemWithCreature(spots, charToPump:ID())
break
end
end
end
end
while true do
pumpMana()
wait(900,1100)
end
I also found a bug to not get kicked (anti idle, WITHOUT BOT).
So my lvl 80 mage uses GMP on my mainchar, through browse field.
And on my mainchar, I dont use bot, I just put coins/stones on my hotkey to weight it down (utana vid hotkey).
But I noticed that if I keep browse field open on my mainchar too, it doesn't get kicked after 15min.
I AFK'd for 24 hours (WITHOUT BOT!!!) on my mainchar by doing this.
I think the Tibia client thinks my mainchar used the potions on itself because browse field kept changing. Used potions were moved to the top of the stack automatically with these new "pages".
And it's something that makes the client think my character is moving them. But in reality, its my other char that pots me. I dont know why it works, but it works.
Keep browse field open on botchar + manual char, and you never get kick after 15min.