Thread: Mr. Rainbow
View Single Post
Old 07-17-2004, 04:14 PM   #3 (permalink)
michaelnc
 
Join Date: Apr 2004
Age: 21
Posts: 67
Send a message via AIM to michaelnc
Default

Yea just go into the script and replace everything with the script below.
Quote:
using System;
using Server;
using Server.Items;
using System.Collections;


namespace Server.Mobiles
{

[CorpseName( "a colorful corpse" )]
public class Rainbow : BaseCreature
{


[Constructable]
public Rainbow () : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = "Mr. Rainbow";
NameHue = 18;
Body = 400;
Hue = 0;
Kills = 10;
BodyValue = 999;

SetStr( 999 );
SetDex( 999 );
SetInt( 999 );

SetHits( 10000 );



SetSkill( SkillName.Anatomy, 999.0 );
SetSkill( SkillName.Wrestling, 999.0 );
SetSkill( SkillName.MagicResist, 999.0 );
SetSkill( SkillName.Tactics, 999.0 );


new Horse().Rider = this;



}




public Rainbow( 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();
}
}
}
michaelnc is offline   Reply With Quote