#W# Progress Save.

This commit is contained in:
WarrentyExpired 2026-08-07 10:16:48 -04:00
parent ff7670934d
commit b66773c594
3 changed files with 18 additions and 4 deletions

View file

@ -25,7 +25,7 @@ namespace Server.Commands
m_Mobile.SendMessage( "Generating world decoration, please wait." ); 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 ); Generate( "Data/Decoration/Dungeons/", Map.Felucca );
m_Mobile.SendMessage( "World generating complete. {0} items were generated.", m_Count ); m_Mobile.SendMessage( "World generating complete. {0} items were generated.", m_Count );

View file

@ -50,7 +50,7 @@ namespace Server.Gumps
} }
else else
{ {
AddBlueBack( 265, 145 ); AddBlueBack( 1010, 145 );
for ( int i = 0; i < m_Types.Length; ++i ) for ( int i = 0; i < m_Types.Length; ++i )
{ {
@ -104,10 +104,24 @@ namespace Server.Gumps
public static DoorInfo[] m_Types = new DoorInfo[] public static DoorInfo[] m_Types = new DoorInfo[]
{ {
new DoorInfo( typeof( MetalDoor ), 0x675 ), new DoorInfo( typeof( MetalDoor ), 0x675 ),
new DoorInfo( typeof( MetalDoor2), 0x6C5 ),
new DoorInfo( typeof( RattanDoor ), 0x695 ), new DoorInfo( typeof( RattanDoor ), 0x695 ),
new DoorInfo( typeof( DarkWoodDoor ), 0x6A5 ), new DoorInfo( typeof( DarkWoodDoor ), 0x6A5 ),
new DoorInfo( typeof( LightWoodDoor ), 0x6D5 ), 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 ),
}; };
} }