Donio
Banned User
yoyo warup.. I need some help adding health and mana to voc 3 and 7, how can I do that?.. i'v read some tutorials but I dont rly get it to 100% I tried but failed about 4 times 
Cykotitan if you are still alive I know you can help me with this! =)
Thats the script
Cykotitan if you are still alive I know you can help me with this! =)
Code:
local runes = {
[2270] = {
voc = {1, 2, 5, 6},
min = 'level * 1 + maglv * 1 - 2',
max = 'level * 1 + maglv * 1'
},
[2300] = {
voc = {3, 7},
min = 'level * 1 + maglv * 4 - 2',
max = 'level * 1 + maglv * 7'
},
[2306] = {
voc = {4, 8},
min = 'level * 1 + maglv * 1 - 2',
max = 'level * 1 + maglv * 3'
}
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
local i = runes[item.itemid]
if isInArray(i.voc, getPlayerVocation(cid)) then
if isPlayer(itemEx.uid) == TRUE then
level, maglv = getPlayerLevel(cid), getPlayerMagLevel(cid)
doPlayerAddMana(cid, math.random(loadstring('return '..i.min)(), loadstring('return '..i.max)()))
doSendMagicEffect(getThingPos(itemEx.uid), CONST_ME_MAGIC_BLUE)
doCreatureSay(itemEx.uid, "Aaaah..", TALKTYPE_ORANGE_1)
doRemoveItem(item.uid, 0)
else
doPlayerSendDefaultCancel(cid, RETURNVALUE_CANONLYUSETHISRUNEONCREATURES)
end
else
doPlayerSendCancel(cid, 'Your vocation cannot use this rune.')
end
return true
end
Thats the script