|
||
|
|||||||
| Server Support on Windows Get (and give) support on general questions related to the RunUO server itself. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#3 (permalink) |
|
Guest
Posts: n/a
|
yeah...I have a script for it...How do I enter it? here it is:
[code:1]// created on 6.1.2003 at 15:15 // a Gamemaster Robe v1.0 using System; using Server.Items; namespace Server.Items { public class GMRobe : BaseOuterTorso { [Constructable] public GMRobe() : this( 0 ) { } [Constructable] public GMRobe( int hue ) : base( 0x204F, hue ) { Weight = 1.0; } public GMRobe( 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(); } } } [/code:1] |
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|