OTHispano
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Ir abajo
··¤Ledtheron¤··
··¤Ledtheron¤··
Miembro
Mensajes Mensajes : 32

[SPELL/MOD] Ultra Shield!! (Te proteje de ataques un tiempo) Empty [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
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>
Razz Ojala les guste
Creditos
100% LED
avatar
Masakre
Miembro
Mensajes Mensajes : 36

[SPELL/MOD] Ultra Shield!! (Te proteje de ataques un tiempo) Empty 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 Wink
Volver arriba
Permisos de este foro:
No puedes responder a temas en este foro.