SphereCommunity
Editing spell effects - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Editing spell effects (/Thread-Editing-spell-effects)



Editing spell effects - escribano - 11-24-2012 01:45 PM

Hi folks,
Today im trying to make a event that triggers on @spellcast (or any other) to chage the spell effect... like:


If i use Firestrke i wanto to give a bonus of 20% on damage, so mt FS will deal 48 of damage.

If i use a healing spell, i want to heal more 20%.

Something like that, someone can help me?

Thanks


RE: Editing spell effects - Skul - 11-25-2012 08:06 AM

For heal spells you can change the effect of s_heal and s_greater_heal. Here's an example:
Code:
on=@spelleffect
if (<serv.spell.<argn1>.defname>==s_heal) || (<serv.spell.<argn1>.defname>==s_greater_heal)
  if !(<tag0.tmp_heal>)
    tag.tmp_heal=1
    serv.spell.<argn1>.effect += <eval <eval <serv.spell.<argn1>.effect> *<tag0.bonus_heal>> /100> //assuming tag.bonus_heal if your 20% value (20)
    spelleffect <argn1> <argn2> <src.uid> //resend the heal spell with the new effect added
    serv.spell.<argn1>.effect -= <eval <eval <serv.spell.<argn1>.effect> *<tag0.bonus_heal>> /100> //remove the bonus resetting the effect
    tag.tmp_heal=
  endif
endif

As for firestrike? or maybe you meant Flamestrike, you can use @gethit since it does damage.
Code:
on=@spelleffect
if ( <serv.spell.<argn1>.flags> & spellflag_damage )
  tag.spell_argn=<argn1>
  tag.spell_strength=<argn2>
endif

on=@gethit
if ( <argn2> & 04 )
  if (<serv.spell.<tag0.spell_argn>.defname>==s_flamestrike)
    argn1 += <eval <eval <argn1> *<tag0.bonus_flamestrike>> /100>
  endif
endif



RE: Editing spell effects - escribano - 11-25-2012 12:18 PM

Skul, really thanks for help!


This works just like i want!!!! thanks!!!