View Single Post
  #8  
Old 05-30-2014, 08:22 PM
drmario
Fire Beetle
 
Join Date: May 2014
Posts: 4
Default

Quote:
Originally Posted by NatedogEZ View Post
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)

Works for me. Thanks again!
Reply With Quote