Twiggys
07-30-2016, 06:31 PM
looking for a mana trainer to just sit in shop and buy potions and cast invis. once potions reach 10 to sell flasks and buy more potions.
Sargul
07-30-2016, 06:40 PM
local ManaPotion = "Strong Mana Potion"
Module.New("manabuy", function(module)
if(Self.ItemCount(ManaPotion)<50) then
Self.SayToNpc("Hi")
wait(500,900)
Self.SayToNpc("vial")
wait(500,900)
Self.SayToNpc("yes")
wait(500,900)
Self.SayToNpc("Trade")
wait(500,900)
Self.ShopBuyItemsUpTo(ManaPotion, 200)
wait(100)
end
module:Delay(1000)
end)
Module.New("manaburn", function(module)
if(Self.Mana()>1000) then
Self.Cast("utana vid")
else
Self.UseItemWithMe(ManaPotion)
end
module:Delay(20)
end)
just make a stand near of mana potion shop
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.