UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

ML Artifact Drop Chances?

Faelorthin

Traveler
So does anyone know what are the ML Artifact drop chances on ML Named Monsters.
Luck affects it right?
and is it the same drop chances across all ML named monsters?
 

Dexter-LoM

Knight
what are chances on those?
if ( !Core.AOS )
return false;

double fame = (double)bc.Fame;

if ( fame > 32000 )
fame = 32000;

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();
 
Top