[SPELL/MOD] Ultra Shield!! (Te proteje de ataques un tiempo)
2 participantes
- ··¤Ledtheron¤··Miembro
- Mensajes : 32
[SPELL/MOD] Ultra Shield!! (Te proteje de ataques un tiempo)
Sáb Jun 30, 2012 9:04 am
Hola, este spell te proteje de ataques y se los devuelve y a ti no te hace nada.. ok aqui va
Creditos
100% LED
- Código:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Ultra Shield" version="1.0" author="Ledtheron" contact="othispano.net" enabled="yes">
<config name="config"><![CDATA[
effect = 4
storage = 4005
charges = 3
]]></config>
<instant name="Ultra Shield" words="utamo mas" lvl="200" mana="140" prem="1" aggressive="0" selftarget="1" exhaustion="4000" needlearn="0" event="script">
<vocation id="4"/>
<vocation id="8"/>
<![CDATA[
function onCastSpell(cid, var)
domodlib("config")
registerCreatureEvent(cid, "Ultra Shield")
doCreatureSetStorage(cid, storage, os.time() + charges)
doSendMagicEffect(getThingPosition(cid), effect)
doSendAnimatedText(getThingPosition(cid), 'ULTRA SHIELD', TEXTCOLOR_YELLOW)
return true
end
]]>
</instant>
<event type="statschange" name="Ultra Shield" event="script"><![CDATA[
function onStatsChange(cid, attacker, type, combat, value)
domodlib("config")
if (getCreatureStorage(cid, storage) > os.time() and type == STATSCHANGE_HEALTHLOSS) then
local damage = math.ceil(value * 1.0)
doSendAnimatedText(getThingPosition(attacker), 'DAMAGED!', TEXTCOLOR_RED)
doCreatureAddHealth(attacker, -damage)
doSendAnimatedText(getThingPosition(cid), 'BLOCKED!!', TEXTCOLOR_LIGHTBLUE)
return false
end
return true
end
]]></event>
</mod>
Creditos
100% LED
- MasakreMiembro
- Mensajes : 36
Re: [SPELL/MOD] Ultra Shield!! (Te proteje de ataques un tiempo)
Vie Jul 20, 2012 11:11 pm
¿Todo lo hiciste tú?
Creo que podrías abrir un taller en que nos expliques cómo hacerlo, desde lo más básico... Digo, para entender toda esa codificación
Creo que podrías abrir un taller en que nos expliques cómo hacerlo, desde lo más básico... Digo, para entender toda esa codificación
Permisos de este foro:
No puedes responder a temas en este foro.