ModernUO/Scripts/Multis/Camps/BankerCamp.cs
Kamron Batman 20ae1b3989
Fixes lots more spelling errors (#5)
* Renames constructable to constructible
* Fixes project references.
* Fixes BaseEquippableLight file name
* Replaces payed with paid.
* Fixes various other spelling errors
2018-02-20 16:01:41 -08:00

49 lines
No EOL
1,003 B
C#

using System;
using Server;
using Server.Items;
using Server.Mobiles;
namespace Server.Multis
{
public class BankerCamp : BaseCamp
{
[Constructible]
public BankerCamp() : base( 0x1F6 )
{
}
public override void AddComponents()
{
BaseDoor west, east;
AddItem( west = new LightWoodGate( DoorFacing.WestCW ), -4, 4, 7 );
AddItem( east = new LightWoodGate( DoorFacing.EastCCW ), -3, 4, 7 );
west.Link = east;
east.Link = west;
AddItem( new Sign( SignType.Bank, SignFacing.West ), -5, 5, -4 );
AddMobile( new Banker(), 4, -4, 3, 7 );
AddMobile( new Banker(), 5, 4, -2, 0 );
}
public BankerCamp( 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();
}
}
}