From b66773c594a7e3bbfa1a7f4f8914c41b0d2fbeda Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Fri, 7 Aug 2026 10:16:48 -0400 Subject: [PATCH] #W# Progress Save. --- .../{Vaelen_Doors.cfg => Bastion_Doors.cfg} | 0 Scripts/Commands/Decorate.cs | 2 +- Scripts/Gumps/AddDoorGump.cs | 20 ++++++++++++++++--- 3 files changed, 18 insertions(+), 4 deletions(-) rename Data/Decoration/Towns/{Vaelen_Doors.cfg => Bastion_Doors.cfg} (100%) diff --git a/Data/Decoration/Towns/Vaelen_Doors.cfg b/Data/Decoration/Towns/Bastion_Doors.cfg similarity index 100% rename from Data/Decoration/Towns/Vaelen_Doors.cfg rename to Data/Decoration/Towns/Bastion_Doors.cfg diff --git a/Scripts/Commands/Decorate.cs b/Scripts/Commands/Decorate.cs index 20eb0f4..a47bd4a 100644 --- a/Scripts/Commands/Decorate.cs +++ b/Scripts/Commands/Decorate.cs @@ -25,7 +25,7 @@ namespace Server.Commands m_Mobile.SendMessage( "Generating world decoration, please wait." ); - Generate( "Data/Decoration/Towns", Map.Felucca ); + Generate( "Data/Decoration/Towns/", Map.Felucca ); Generate( "Data/Decoration/Dungeons/", Map.Felucca ); m_Mobile.SendMessage( "World generating complete. {0} items were generated.", m_Count ); diff --git a/Scripts/Gumps/AddDoorGump.cs b/Scripts/Gumps/AddDoorGump.cs index c76fdfa..93fb415 100644 --- a/Scripts/Gumps/AddDoorGump.cs +++ b/Scripts/Gumps/AddDoorGump.cs @@ -50,7 +50,7 @@ namespace Server.Gumps } else { - AddBlueBack( 265, 145 ); + AddBlueBack( 1010, 145 ); for ( int i = 0; i < m_Types.Length; ++i ) { @@ -104,10 +104,24 @@ namespace Server.Gumps public static DoorInfo[] m_Types = new DoorInfo[] { new DoorInfo( typeof( MetalDoor ), 0x675 ), + new DoorInfo( typeof( MetalDoor2), 0x6C5 ), new DoorInfo( typeof( RattanDoor ), 0x695 ), new DoorInfo( typeof( DarkWoodDoor ), 0x6A5 ), new DoorInfo( typeof( LightWoodDoor ), 0x6D5 ), - new DoorInfo( typeof( StrongWoodDoor ), 0x6E5 ) + new DoorInfo( typeof( StrongWoodDoor ), 0x6E5 ), + new DoorInfo( typeof( LightWoodGate ), 0x839 ), + new DoorInfo( typeof( DarkWoodGate ), 0x866 ), + new DoorInfo( typeof( MediumWoodDoor ), 0x6B5 ), + new DoorInfo( typeof( SecretLightWoodDoor ), 0x344 ), + new DoorInfo( typeof( SecretWoodenDoor ), 0x334 ), + new DoorInfo( typeof( SecretDungeonDoor), 0x314 ), + new DoorInfo( typeof( SecretStoneDoor1 ), 0xE8 ), + new DoorInfo( typeof( SecretStoneDoor2 ), 0x324 ), + new DoorInfo( typeof( SecretStoneDoor3 ), 0x354 ), + new DoorInfo( typeof( IronGateShort ), 0x84C ), + new DoorInfo( typeof( IronGate ), 0x824 ), + new DoorInfo( typeof( BarredMetalDoor ), 0x685 ), + new DoorInfo( typeof( BarredMetalDoor2 ), 0x1FED ), }; } @@ -122,4 +136,4 @@ namespace Server.Gumps m_BaseID = baseID; } } -} \ No newline at end of file +}