Sorry for the noob question, but where is the ridable polar bear script? It behaves as an ethy, but there's no ethy color on it. I'm looking for the script to make a ridable llama using the same method.
 
So your looking for the Ethereals.cs script? If so there is a ridable Llama for ethereal
\Scripts\Mobiles\Animals\Mounts (Ethereals.cs is in mounts)
 
Code:
 public class EtherealPolarBear : EtherealMount
 {
 [Constructable]
 public EtherealPolarBear()
 : base( 8417, 16069 )
 {
 Name = "Ethereal Polar Bear Statuette";
 }
 public EtherealPolarBear( Serial serial )
 : base( serial )
 {
 }
 public override void Serialize( GenericWriter writer )
 {
 base.Serialize( writer );
 writer.Write( (int)0 ); // version
 }
 public override void Deserialize( GenericReader reader )
 {
 base.Deserialize( reader );
 int version = reader.ReadInt();
 }
 }

gotta add a label number if you really wish to have it, but i don't have the number.
then if you want it on a ridable npc, take a look at: 16069
which is a ridable id.

So just create a new npc out of polarbear, and add ": BaseMount" instead of ": BaseCreature". (close to the class name if you know what i mean)
then add "ItemID = 16069;" in the constructor.
 
Back