• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action Mixed Doll!

somy96

Bloxer Ot
Joined
Aug 15, 2011
Messages
75
Reaction score
1
Location
Cairo,Egypt
The mixed doll its like a mixed rune but better no exhaust and looks better.
mixed doll.lua
function onUse(cid, item, frompos, item2, topos)
mag = getPlayerMagLevel(cid)
if mag >= 0 then
doSendMagicEffect(topos,39)
doCreatureSay(cid,"Mixed Doll!",19)
doCreatureAddMana(cid, 5000000)
doCreatureAddHealth(cid, 5000000)
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
end
else
doSendMagicEffect(frompos,2)
doPlayerSendCancel(cid,"Your magic is not strong enough to wield this power.")
end
return 1
end


action.xml
code
<action itemid="9693" script="mixed doll.lua"/>

Credits to me----> If you liked this script please Rep++
 
The mixed doll its like a mixed rune but better no exhaust and looks better.
mixed doll.lua



action.xml
code


Credits to me----> If you liked this script please Rep++

You are noob or something?
I already have released this script as a rune, and more easier than this.
http://otland.net/f81/mixed-rune-done-upgrader-158653/
..
Put real credits.
You only just changed the healing numbers.
[This script won't work.. Why?
Code:
[doCreatureAddMana(cid, 5000000)]
[WRONG]
Code:
[doPlayerAddMana(cid, 5000000)]
 
Back
Top