A shard i played on long time ago, there was a magic dex value i think like 215 to make bandage instant. Im playing around on a personal server and even with 250 dex 100 heal and 100 anat the timer is like 4 secs? Is there some edits that were made to stop instant bandage in a updated repo? Id like to know how to return it to the old way if it was changed
 
Bandage.cs
comment this line: //seconds = Math.Max(seconds, 4);

Code:
                if (onSelf)
                {
                    if (Core.AOS)
                    {
                        seconds = Math.Min(8, Math.Ceiling(11.0 - healer.Dex / 20));
                        seconds = Math.Max(seconds, 4);
                    }
                    else
                    {
                        seconds = 9.4 + (0.6 * ((double)(120 - dex) / 10));
                    }
                }
 
Back