#W# Source and Scripts added. Added Scripts/Settings.cs to expose some basic tweak able settings.
This commit is contained in:
parent
b51c58f514
commit
3045c83799
3512 changed files with 627673 additions and 0 deletions
70
Scripts/Items/Construction/Signs/SubtextSign.cs
Normal file
70
Scripts/Items/Construction/Signs/SubtextSign.cs
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class SubtextSign : Sign
|
||||
{
|
||||
private string m_Subtext;
|
||||
|
||||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public string Subtext
|
||||
{
|
||||
get { return m_Subtext; }
|
||||
set { m_Subtext = value; InvalidateProperties(); }
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public SubtextSign( SignType type, SignFacing facing, string subtext )
|
||||
: base( type, facing )
|
||||
{
|
||||
m_Subtext = subtext;
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public SubtextSign( int itemID, string subtext )
|
||||
: base( itemID )
|
||||
{
|
||||
m_Subtext = subtext;
|
||||
}
|
||||
|
||||
public override void OnSingleClick( Mobile from )
|
||||
{
|
||||
base.OnSingleClick( from );
|
||||
|
||||
if ( !String.IsNullOrEmpty( m_Subtext ) )
|
||||
LabelTo( from, m_Subtext );
|
||||
}
|
||||
|
||||
public override void AddNameProperties( ObjectPropertyList list )
|
||||
{
|
||||
base.AddNameProperties( list );
|
||||
|
||||
if ( !String.IsNullOrEmpty( m_Subtext ) )
|
||||
list.Add( m_Subtext );
|
||||
}
|
||||
|
||||
public SubtextSign( Serial serial )
|
||||
: base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
|
||||
writer.Write( (int) 0 );
|
||||
|
||||
writer.Write( m_Subtext );
|
||||
}
|
||||
|
||||
public override void Deserialize( GenericReader reader )
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
|
||||
int version = reader.ReadInt();
|
||||
|
||||
m_Subtext = reader.ReadString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue