Buffs in Developer Help
proc/Countdown(mob/owner) while(duration != -1 && duration > 0) sleep(10) duration =- 1 if(duration <= 0) RemoveEffect(owner)
duration =- 1//should be... duration -= 1
duration =- 1//should be...
duration -= 1