View Full Version : mana burner?
kefedeazz
03-04-2016, 08:59 AM
hi all, was just wondering if anyone had a decent mana burning script I could grab at all? with The double exp weekend coming up I wanted to spend acouple kk's to smash some magic levels out? thanks in advance! <3
krille09
03-04-2016, 04:58 PM
I don't know exactly what you are searching for, but you can use xenobot support/healer to mana train, just enter a new value, put it to Mana% and ABOVE like 95-98 % or something...
Hope this helps if it was this you were looking for...
buyer
03-04-2016, 11:29 PM
Maybe he wants something that buys and sells pots at npc and spams spells? Idk
ThisNameIsTaken
03-20-2016, 08:51 AM
I'd like a script that sells mana pots and buys new ones while burning mana. I'd easily pay if anyone could make this.
thebottingwessmaster
04-28-2016, 07:18 PM
Two different .LUAs. One for the spells other for the talking to NPC. Use at Kazordoon, trap him in a corner.
Keep the NPC/Trade window open also!
----------Skripppttt one-----------
utanaVidTime = os.clock()
exuraVitaTime = os.clock()
Module.New("Cast Spells", function()
if (os.clock() - exuraVitaTime >= math.random(0.80, 1.30)) then
if (Self.Mana() >= 160) then
Self.Say("exura vita")
end
exuraVitaTime = os.clock()
end
end)
------------------------------------Skrripppttt two--------
local ratio = 2.7 -- 100 mana potions = 270.00oz
local PotionID = Item.GetID("mana potion")
local PotionPrice = 50
local PotionName = "mana potion"
local spellToUse = "exura vita"
local spelltoUseMana = 100
while(true) do
if (Self.ItemCount(PotionName) > 0) then --using all of the mana potions
while (Self.ItemCount(PotionName) > 0) do
local mana = spelltoUseMana + math.random(50,150)
if (not Self.Cast(spellToUse, mana)) then
Self.UseItemWithMe(PotionID)
sleep(math.random(600,1400))
end
end
else -- we must buy more potions
--firstly, sell flasks..
if (Self.Flasks() > 0) then
while (Self.Flasks() > 0) do
if (Self.ItemCount(283) > 0) then
Self.ShopSellAllItems(283)
end
if (Self.ItemCount(284) > 0) then
Self.ShopSellAllItems(284)
end
if (Self.ItemCount(285) > 0) then
Self.ShopSellAllItems(285)
end
end
end
-- lets buy potions
if (Self.Money() > 0) then -- just to reduce amount of gold coins (wasting cap)
while (Self.ItemCount(3031) > PotionPrice) do
Self.ShopBuyItem(PotionID, 1)
sleep(math.random(300,900))
end
while ((Self.Cap() > (ratio * 100 + 10)) and (Self.Money() > PotionPrice * 100)) do
Self.ShopBuyItem(PotionID, 100)
sleep(math.random(300,900))
end
while ((Self.Cap() > (ratio * 10 + 10)) and (Self.Money() > PotionPrice * 10)) do
Self.ShopBuyItem(PotionID, 10)
sleep(math.random(300,900))
end
end
end
sleep(math.random(600,1400))
end
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.