PDA

View Full Version : Sorcerer Mana Training



Naser
04-12-2016, 09:50 PM
Hello Guys..

I have a question:

i looked everywhere but i didnt find any mana training for sorcerers as a script.

Actually i got a house where i wanna make mana training for some days that means he need to buy pots in venore go to house -1 floor use all the pots and buy again "the whole time" or i just buy many bps mana and put it into the house that dousnt matter.

if there is somebody to make a script for me i would be able to pay 10$ for it by paypal. ofc i need to know if the script is fine and without bugs.

i hope somebody can help me !!

Best regards

desche188
04-12-2016, 10:01 PM
i normally just put all manas in backpacks underneath my character and set a healing spell to say 'Utana Vid' or another spell that uses alot of mana inside protection zones setting mana potions to be used at 60%

This script will pick up potions from the ground under your character (you might need to open all the bags for the script to put manas in your main backpack)



Player = {}function Player.SortItems(id, backpack)
local newcont = Container.New(backpack)
if Self.Cap() > 400 then
if not newcont:isFull() then
for i = 0, #Container.GetIndexes()-1 do
local cont = Container.New(i)
if cont:Index() ~= newcont:Index() then
for j = cont:ItemCount()-1, 0, -1 do
if Self.Cap() > 300 then
if cont:GetItemData(j).id == id then
cont:MoveItemToContainer(j, newcont:Index(), newcont:ItemCapacity()-1)
wait(500, 800)
end
end
end
end
end
end
end
end
Module.New('123', function(mod)
Player.SortItems(238, 0) ------ SET FOR GREAT MANAS CHANGE ITEM ID FOR STRONG OR NORMAL MANAS DEPENDING ON LEVEL
mod:Delay(5000)
end)