View Single Post
  #7  
Old 05-30-2014, 08:09 PM
NatedogEZ's Avatar
NatedogEZ
Developer
 
Join Date: Dec 2012
Posts: 515
Default

Pretty sure case 2: should be this.... (going from what is posted on Lucy for spells that have that formula ID)


Code:
i = (int)ceil(level * 0.6f);
return i < duration ? (i < 1 ? 1 : i) : duration;

http://lucy.allakhazam.com/spell.htm...42&source=Live


At level 1 -- it returns 1 tick
at level 65 it returns 39 ticks (or MAX duration)


formula works with this spell too ... so it seems to be right on

http://lucy.allakhazam.com/spell.htm...97&source=Live
Reply With Quote