Log in

View Full Version : Mana Training Script



gall1990
06-07-2016, 10:36 PM
Hello,
Hello,

I am looking for some help and I figured it would be the safest and easiest way to contact you!

I am trying to find a script for mana sitting
Basically I would like to sit somewhere in ab, with say 5-10 bps or more full of strong mana potions, pick up 100-200 burn them using spells throw away flask, pick up more and repeat

Also I would need help setting it up. Like if I get the file what exactly do I do with it. I tried to download a script the other day (from the websit, loaded it and then tried to open it on the bot and it wouldnlt work!

If you could help or point me in the right direction that would be great!

Trykon
06-07-2016, 10:54 PM
I will post mana sitting on Thursday. By that time I am working and not rly have time. If you will wait, then I will post it. Maybe someone else will help you till then :)

gall1990
06-09-2016, 05:13 PM
perfect! really need one !

uhtex
06-09-2016, 05:18 PM
Here is a house mana trainer.

gall1990
06-09-2016, 11:11 PM
Silly question, would u also have one for not in a house (as I do not own one currently and also how do I apply them

Trykon
06-09-2016, 11:25 PM
Ahhh.. I forgot about this one, I was busy with new RP script and completely forgot about manasitting... I will try to write that as soon as possible

gall1990
06-09-2016, 11:29 PM
thanks dude! I have such a terrible ml, could use it asap ! :)

Trykon
06-10-2016, 01:14 AM
local ManaPotion = "Great Mana Potion"
Module.New("manabuy", function(module)
if(Self.ItemCount(ManaPotion)<50) then
Self.SayToNpc("Hi")
wait(200)
Self.SayToNpc("Vial")
wait(200)
Self.SayToNpc("Yes")
wait(200)
Self.SayToNpc("Trade")
wait(200)
Self.ShopBuyItemsUpTo(ManaPotion, 100)
wait(100)
end
module:Delay(1000)
end)
Module.New("manaburn", function(module)
if(Self.Mana()>1000) then
Self.Cast("Utana Vid")
Self.Cast("Exura Vita")
else
Self.UseItemWithMe(ManaPotion)
end
module:Delay(20)
end)
this should work... although I didn't check it yet
I suggest to set in walker twice stand on where you will manasit (in front of npc)

Trykon
06-10-2016, 01:19 AM
If you play on non-pvp you can manasit in svargrond outside pz, then you can add offensive spell

gall1990
06-10-2016, 01:28 AM
I see it says great mana pot. Do I take out great and put in strong to use strong manas. Also what do I do with all that? I'm assuming copy and paste it, but where? I'm new at there so I really don't know what to do or is going on lol.

Trykon
06-10-2016, 01:41 AM
13627

Download attached file
Put this in xenobot/scripts
in tibia go to scripter>execute script (this manasitter)
good way is to set stand 2 times in walker in front on npc and enable it it will keep you all the time in the same place (nobody will push you)

gall1990
06-10-2016, 02:04 AM
ok! So I downloaded, moved to xeno script files. you said set stand 2 times. am I able to like set it so he walks to the npc does his things, then walks to a hidden location and sits there until needs refil again?

yompa93
06-10-2016, 03:29 AM
I would mana train in ab'dendriel instead of svargrond, but i guess it's a matter of taste the north potion shop of thais would also work as a alternative.

Here's some more options to the mana burner aswell:


ManaPotion = "mana potion" -- The mana potion you're using.
ManaToPot = 2000 -- Use mana potions below this amount of mana.
Spells = 3 -- How many spells are you using? 1-3
SpellWords1 = "exevo gran mas flam" -- First priority spell
SpellWords2 = "utana vid" -- Second priority spell
SpellWords3 = "exura vita" -- Last priority spell

Module.New("manaburn", function(module)
if Spells >= 1 and Self.CanCastSpell("SpellWords1") then
Self.Cast("SpellWords1")
elseif Spells >= 2 and Self.CanCastSpell("SpellWords2") then
Self.Cast("SpellWords2")
elseif Spells == 3 and Self.CanCastSpell("SpellWords3") then
Self.Cast("SpellWords3")
elseif Self.Mana() < ManaToPot then
Self.UseItemWithMe(ManaPotion)
end
module:Delay(20)
end)

cpt.pepper
06-13-2016, 05:34 PM
Is it possible to change great mana potion to ultimate mana potion? I know that its more waste but I will use this with a voucher.

cpt.pepper
06-13-2016, 05:35 PM
Here is a house mana trainer.

Is it possible to change great mana potion to ultimate mana potion? I know that its more waste but I will use this with a voucher.

Trykon
06-13-2016, 06:43 PM
just change name...

cpt.pepper
06-14-2016, 04:44 PM
I get this message when I try to change "Not supported, use another potion!"

Trykon
06-14-2016, 05:12 PM
on the one that I posted you can use other pots for sure... I tried it on pally with strong mana pots and other spells

cpt.pepper
06-15-2016, 08:02 AM
Ah ok, but im looking for a housetrainer

Trykon
06-15-2016, 08:34 AM
So just check around the forum. Right now I am busy with some other scripts, but if you are willing to buy this script then I am willing to help.

SpiritCusher
07-06-2016, 04:03 PM
i need it too

lightsdown
10-08-2016, 10:12 AM
13627

Download attached file
Put this in xenobot/scripts
in tibia go to scripter>execute script (this manasitter)
good way is to set stand 2 times in walker in front on npc and enable it it will keep you all the time in the same place (nobody will push you)

for some reason it doesnt sell vials :S

Trykon
10-08-2016, 04:03 PM
for some reason it doesnt sell vials :S

Im at work, so i cant really even look into script, this should work anyway... tomorrow ill look into it

kanademru
12-23-2016, 03:26 PM
for some reason it doesnt sell vials :S


local ManaPotion = "Mana Potion"
Module.New("manabuy", function(module)
if(Self.ItemCount(ManaPotion)<50) then
Self.SayToNpc("Hi")
wait(1000)
Self.SayToNpc("Vial")
wait(1000)
Self.SayToNpc("Yes")
wait(1000)
Self.SayToNpc("Trade")
wait(1000)
Self.ShopBuyItemsUpTo(ManaPotion, 100)
wait(1000)
Self.SayToNpc("Bye")
end
module:Delay(5000)
end)
Module.New("manaburn", function(module)
if(Self.Mana()>1000) then
Self.Cast("Utana Vid")
Self.Cast("Exura Vita")
else
Self.UseItemWithMe(ManaPotion)
end
module:Delay(20)
end)

Now it works :)