Ethereal Deamon

Anything regarding UO or Age of Valor
Locked
User avatar
Dumples
Posts: 484
Joined: Fri Jan 05, 2007 4:57 pm

Ethereal Deamon

Post by Dumples »

I guess they put the MountID for a Deamon recently. If you are patched up to the latest client this will work without any special patches.

Code: Select all

using System; 
using Server.Mobiles; 

namespace Server.Items 
{ 
	public class EtherealDemon : EtherealMount 
	{ 

		[Constructable] 
		public EtherealDemon() : base( 11670, 0x3E91 )                            
		{ 
			Name = "Ethereal Demon Statuette";
			ItemID = 8403;
			MountedID = 16239;
			RegularID = 8403;
			LootType = LootType.Blessed; 
		} 

		public EtherealDemon( Serial serial ) : base( serial ) 
		{ 
		} 

		public override void Serialize( GenericWriter writer ) 
		{ 
			base.Serialize( writer ); 

			writer.Write( (int) 0 ); 
		} 

		public override void Deserialize( GenericReader reader ) 
		{ 
			base.Deserialize( reader ); 

			int version = reader.ReadInt();

			if ( Name != "Ethereal Demon Statuette" )
				Name = "Ethereal Demon Statuette";
		} 
	}
}


And actually, you could use this basic scripts to make an ethereal of anything that has a mountid. This taken from a more complex script, but this portion was pretty cool and simple. I don't know who wrote the majority of the original script.

Archived topic from AOV, old topic ID:1192, old post ID:7587
Image
User avatar
Death
Posts: 7919
Joined: Thu Sep 30, 2004 10:12 pm

Ethereal Deamon

Post by Death »

Hmmm interesting. A mountID for a demon.

Archived topic from AOV, old topic ID:1192, old post ID:7594
User avatar
Dumples
Posts: 484
Joined: Fri Jan 05, 2007 4:57 pm

Ethereal Deamon

Post by Dumples »

Bartok wrote:Hmmm interesting. A mountID for a demon.
Yeah I tried it out and it works. The only problem is that the animation has the player sitting pretty low in the monster, but still is cool to have.

Archived topic from AOV, old topic ID:1192, old post ID:7595
Image
jrhather
Posts: 824
Joined: Thu May 08, 2008 7:08 am

Ethereal Deamon

Post by jrhather »

Two things....


piggyback ride? too cool...


and I love how the last quote shows as Bartok

Archived topic from AOV, old topic ID:1192, old post ID:20178
Lumpy Pickle
Posts: 55
Joined: Sun Apr 20, 2008 3:07 am

Ethereal Deamon

Post by Lumpy Pickle »

new donation item?

Archived topic from AOV, old topic ID:1192, old post ID:22667
User avatar
Death
Posts: 7919
Joined: Thu Sep 30, 2004 10:12 pm

Ethereal Deamon

Post by Death »

Lumpy Pickle wrote:new donation item?
Doubtful. The rideable demon looked really funny (If memory serves me right, it looked like the demon ate you and you sliced through its stomach to escape). However, if we could make it look half decent, we probably could add it in either as a new ethereal or a donation item.

Archived topic from AOV, old topic ID:1192, old post ID:22669
Lumpy Pickle
Posts: 55
Joined: Sun Apr 20, 2008 3:07 am

Ethereal Deamon

Post by Lumpy Pickle »

im cool with being eaten come on rember jonah and the whale he got ate and the whale took him to atlantic city where he won on the craps table hello good things come to those who have been eaten

Archived topic from AOV, old topic ID:1192, old post ID:22674
User avatar
Death
Posts: 7919
Joined: Thu Sep 30, 2004 10:12 pm

Ethereal Deamon

Post by Death »

Lumpy Pickle wrote:im cool with being eaten come on rember jonah and the whale he got ate and the whale took him to atlantic city where he won on the craps table
orly o_O.

Archived topic from AOV, old topic ID:1192, old post ID:22676
Locked