Caithe Posted July 2, 2012 Share Posted July 2, 2012 (edited) Is it possible to make an effect only happen at a certain percent chance?I have an enchantment that paralyse certain monsters. But paralysis happen every hits and it is very too powerful.So what I want to do is make my effect have 50% chance of paralysing when monster is under 50% HP. Or if random chance isn't possible, at least only when HP is at a certain point. I'm not sure if this would be done with scripts or conditions. I really don't understand anything about any of them. Condition is a bit less confusing but I still don't understand half of what anything means. Or is there another weapon that act like I described which I could "steal" conditions from? Edited July 2, 2012 by Caithe Link to comment Share on other sites More sharing options...
pauderek Posted July 2, 2012 Share Posted July 2, 2012 (edited) You can use this conditions on the magic effect or the spell: For the random %:GetRandomPercent <= 50 For the health:GetActorValuePercent (Health) <= 50or GetHealthPercentage <= 50I always use the first one, don't know if GetHealthPercentage will do the job. Edit:CWAbRegenSpell has the condition GetActorValue (Health) <= 25, you can copy it and change it to GetActorValuePercent, it's the next one in the droplist.The same for GetRandomPercent, just duplicate the GetActorValuePercent condition and change it to GetRandomPercent Edited July 2, 2012 by pauderek Link to comment Share on other sites More sharing options...
Caithe Posted July 2, 2012 Author Share Posted July 2, 2012 Thank you very much. Link to comment Share on other sites More sharing options...
Recommended Posts