• 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!

Lua manarune hhelppp!!

Doggynub

LUA / C++
Joined
Sep 28, 2008
Messages
2,541
Reaction score
186
i need a manrune script for crying damson 8.50 (3.5)
the mana rune gives 10000
no exaustion
it give do sendmagic effct(1000+) in blue colour
same time other effect say (using infinite manarune) in orange
 
PHP:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

function onCastSpell(cid, var)
doPlayerAddMana(cid, 1000) 
return doCombat(cid, combat, var)
end

PHP:
<rune name="mana rune" id="2280" allowfaruse="1" charges="0" lvl="90" maglv="4" exhaustion="10" event="script" value="healing/mana rune.lua"/>
 
Back
Top