RunUO 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!

Efreet with Daemon Armor

Vidi

Page
Efreet with Daemon Armor

No big deal. just added the daemon armor to the efreet.

You can change the drop rate to your prefered rate by changing:

Code:
	switch (Utility.Random( 25 ))		
{
		case 0: PackItem( new DaemonArms() ); break;
		case 1: PackItem( new DaemonChest() ); break;
		case 2: PackItem( new DaemonGloves() ); break;
		case 3: PackItem( new DaemonLegs() ); break;
		case 4: PackItem( new DaemonHelm() ); break;
}

change the 25 to whatever you want for your drop rate.
 

Attachments

  • Efreet.cs
    1.9 KB · Views: 172
Top