SphereCommunity
Spell fizzles - Printable Version

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



Spell fizzles - Runcuks - 02-15-2013 04:07 AM

Hi, could some1 tell me how to stop spells from fizzle ?
Thanks.


RE: Spell fizzles - darksun84 - 02-15-2013 04:13 AM

fizzle when you are hit by someone ? in this case you have just to modify the INTERRUPT line spherespells


RE: Spell fizzles - Runcuks - 02-15-2013 06:31 AM

No i mean by nothing like player is casting fireball and suddenly by nothing it fizzles ...


RE: Spell fizzles - RanXerox - 02-15-2013 06:44 AM

If you want spells to always succeed, maybe you have to edit the magery skill itself to make that happen


RE: Spell fizzles - UltimaAku - 02-15-2013 08:47 AM

is it randomly fizzling even at GM level?


RE: Spell fizzles - Runcuks - 02-15-2013 03:08 PM

Here is my magery skill --->
[SKILL 25]
DEFNAME=Skill_Magery
KEY=Magery
TITLE=Mage
PROMPT_MSG=
STAT_STR=20
STAT_INT=100
STAT_DEX=40
BONUS_STR=0
BONUS_DEX=0
BONUS_INT=0
BONUS_STATS=15
ADV_RATE=0.1,2.0,4.0
VALUES=1,2,3
//DELAY=1.0 // based on skill and difficulty.

ON=@Fail
Sfx 92
SRC.MANA -= <EVAL <SRC.TAG0.MANA>*2>
SRC.EFFECT 3,14133,5,30,1
return 1

ON=@Abort
Sfx 92
SRC.MANA -= <EVAL <SRC.TAG0.MANA>*2>
SRC.MESSAGE The spell fizzles
SRC.EFFECT 3,14133,5,30,1
return 1


UltimaAku i have test it with GM becouse i dont have time for it now i have to go to work ... when i will come home will test it .


RE: Spell fizzles - RanXerox - 02-15-2013 03:25 PM

Add this to it (I don't know what the range is for "difficulty" but I would guess between 0 and 1000...):

ON=@Start
ARGN2=0 //Set difficulty of spell (0=easy 1000=hard? )


RE: Spell fizzles - Runcuks - 02-16-2013 12:02 AM

Ok thanks this is working atleast when i tested it.