Tukaram
Member
How can I increase the drop rate on a paragon to drop an artifact? I was looking at the math in the paragon.cs but I cannot make heads or tails of it...
double chance = 1 / (Math.Max(10, 100 * (0.83 - Math.Round(Math.Log(Math.Round(fame / 6000, 3) + 0.001, 10), 3))) * (100 - Math.Sqrt(m.Luck)) / 100.0);
return chance > Utility.RandomDouble();
}
double chance = 1 / (Math.Max(10, 100 * (0.83 - Math.Round(Math.Log(Math.Round(fame / 6000, 3) + 0.001, 10), 3))) * (100 - Math.Sqrt(m.Luck)) / 100.0);
return chance > Utility.RandomDouble();
}