• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Manarune script

cuba

New Member
Joined
Feb 24, 2015
Messages
136
Reaction score
2
hello otland can anyone help me to find this manarune script

Q6JTGsc.png


--Thanks--
 
You should post your server version and client version when you ask for support for your server.
For the effect and animated text (amount should be the amount it heals).
Code:
doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYAREA)
doSendAnimatedText(getThingPosition(cid), amount, COLOR_YELLOW)
You can find magic effects here.
http://otland.net/threads/magic-effects-10-41.221733/
Other colors you can find in data/lib/000-constant.lua.
 
You should post your server version and client version when you ask for support for your server.
For the effect and animated text (amount should be the amount it heals).
Code:
doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYAREA)
doSendAnimatedText(getThingPosition(cid), amount, COLOR_YELLOW)
You can find magic effects here.
http://otland.net/threads/magic-effects-10-41.221733/
Other colors you can find in data/lib/000-constant.lua.
thanks limos with your help but i want the full script can you?
 
You can just add that to any mana rune script you can find, if you have problems with any you found, post it and explain what the problems are.
You still didn't post your server version btw.
 
forgotten server 0.3.6 8.6
@Limos
Code:
function onCastSpell(cid, var)
local minmana = (getPlayerLevel(cid) * .1234) + (getPlayerMagLevel(cid) * .5678)
local maxmana = (getPlayerLevel(cid) * .5678) + (getPlayerMagLevel(cid) * 1.234)
local randommana = math.ceil(math.random(minmana,maxmana))

doCreatureAddMana(cid, randommana)
doSendMagicEffect(getCreaturePosition(cid), 50)
doSendAnimatedText(getCreaturePosition(cid), randommana, COLOR_YELLOW)
return true
end

I've added in the yellow color for you, though if you do not disable showHealingDamage in config.lua it'll show yellow and purple.
 
Back
Top