mordredrs

Member
Hi there!
I'd like to improve the chance of artifact drop with navrey, medusa, ...
However, i'm not sure about what line(s) i should change to have it done.
Is anyone able to help me?
Thanks in advance for any help fellows!
 
BaseSABosses.cs

Code:
       public Item GetArtifact()
        {
            double random = Utility.RandomDouble();
            if (0.05 >= random)
                return this.CreateArtifact(this.UniqueSAList);
            else if (0.15 >= random)
                return this.CreateArtifact(this.SharedSAList);

            return null;
        }

Change the floats in the conditionals.

I.E
Code:
0.05 >= random
Is a 5% chance.

Code:
0.5 >= random
Is a 50% chance.
 

Active Shards

Donations

Total amount
$80.00
Goal
$1,000.00
Back