From 4a188a6788428473b85ad1a31cf4108d29dba363 Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Fri, 7 Aug 2026 09:46:14 -0400 Subject: [PATCH] #W# Added more doors to the AddDoorGump. --- Scripts/Gumps/AddDoorGump.cs | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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 +}