![]() |
Spell damage calculation - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Spell damage calculation (/Thread-Spell-damage-calculation) |
Spell damage calculation - Tastaran - 04-20-2017 11:11 PM Hello, how works the strength of the spell in trigger "@spelleffect" (argn2) ? No idea how can i set my dmg through it. If I use function "damage" there is still some unwanted damage and I dont know how to disable it. Even if i set argn2=0 there is still some random damage from 30-60, or effect of the spell 0. Still same. Works only if i disable trigger (return 1), but here is not effect etc... Code : on=@spelleffect local.dmg=<calcdmg> // calculated from spell effect and attributes. argn2=0 damage <local.dmg>,dam_god,<src> return 0 RE: Spell damage calculation - darksun84 - 04-20-2017 11:50 PM Using the damage function will just add additional damage along with the spell damage. Try use LOCAL.Effect and local.resist See Quote:Some changes on spell triggers (@Effect [spells] / @SpellEffect [chars]) to allow more user customization and Quote:local.resist: Damage reduction to apply, it's set to 25 automatically when the spell is going to be resisted, then sysmessage <DEFMSG.RESISTMAGIC> will be shown. Setting it to 0 will result in no resist and no sysmessage. You can force or totally remove resists here. RE: Spell damage calculation - Tastaran - 04-21-2017 12:34 AM Well i tried evade it ... but local.effect works properly, ty for fast reaction ... It was a lot of nerves ![]() RE: Spell damage calculation - Coruja - 04-26-2017 01:50 PM spell effects can be changed based on your .ini settings. If MAGICF_OSIFORMULAS setting is disabled on your sphere.ini, sphere will use the EFFECT value set on spells (sphere_spells.scp) so if an spell like Heal have EFFECT=8,12 it will heal a "random" value between 8,12 (lower magery skills have more chance to get lower values, higher magery skill will get higher values) otherwise if you use MAGICF_OSIFORMULAS, sphere will ignore these EFFECT values and use the internal OSI formula instead, which are more complex because most of these formulas are different from each other, they get the result based on combination of skill values, etc and as already said, you can also use LOCAL.Effect to customize these effects or use your own formula on scripts |