diff --git a/Delmud/Delmud.csproj b/Delmud/Delmud.csproj index f18e326..d1b19b1 100644 --- a/Delmud/Delmud.csproj +++ b/Delmud/Delmud.csproj @@ -1,98 +1,101 @@ - - - - Debug - AnyCPU - {A0AF04AB-7049-44B0-9496-7B2297AEE263} - Exe - Properties - Delmud - Delmud - v4.5.1 - 512 - - - - true - ..\Out\ - DEBUG;TRACE - full - AnyCPU - prompt - false - - - ..\Out\ - TRACE - true - AnyCPU - prompt - false - - - Delmud.Program - - - false - - - false - - - - ..\packages\SharpRuleEngine.1.0.5\lib\SharpRuleEngine.dll - True - - - - - - - - - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - - - - - - {5c29e6ad-54e3-4105-a9f3-2aab48a17c41} - Core - - - {cce2b1d9-e0e9-48e1-9ada-49f36e6f15c5} - NetworkModule - - - - - - - + + + + Debug + AnyCPU + {A0AF04AB-7049-44B0-9496-7B2297AEE263} + Exe + Properties + Delmud + Delmud + v4.5.1 + 512 + + + + true + ..\Out\ + DEBUG;TRACE + full + AnyCPU + prompt + false + + + ..\Out\ + TRACE + true + AnyCPU + prompt + false + + + Delmud.Program + + + false + + + false + + + + ..\packages\SharpRuleEngine.1.0.5\lib\SharpRuleEngine.dll + True + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + {5c29e6ad-54e3-4105-a9f3-2aab48a17c41} + Core + + + {cce2b1d9-e0e9-48e1-9ada-49f36e6f15c5} + NetworkModule + + + + + + + + + + + --> \ No newline at end of file diff --git a/Delmud/delmud_db/static/area/beginning/secondroom.cs b/Delmud/delmud_db/static/area/beginning/secondroom.cs new file mode 100644 index 0000000..3b4fe75 --- /dev/null +++ b/Delmud/delmud_db/static/area/beginning/secondroom.cs @@ -0,0 +1,13 @@ +public class secondroom : MudObject +{ + public override void Initialize() + { + Room(RoomType.Interior); + + SetProperty("short", "The Second Room"); + SetProperty("ambient light", LightingLevel.Bright); + OpenLink(Direction.SOUTH, "start"); + OpenLink(Direction.NORTH, "area/beginning/thirdroom"); + + } +} \ No newline at end of file diff --git a/Delmud/delmud_db/static/area/beginning/thirdroom.cs b/Delmud/delmud_db/static/area/beginning/thirdroom.cs new file mode 100644 index 0000000..84dc7ea --- /dev/null +++ b/Delmud/delmud_db/static/area/beginning/thirdroom.cs @@ -0,0 +1,12 @@ +public class thirdroom : MudObject +{ + public override void Initialize() + { + Room(RoomType.Interior); + + SetProperty("short", "The Second Room"); + SetProperty("ambient light", LightingLevel.Bright); + OpenLink(Direction.SOUTH, "area/beginning/secondroom"); + + } +} \ No newline at end of file diff --git a/Delmud/delmud_db/static/start.cs b/Delmud/delmud_db/static/start.cs index 5d99876..4cde529 100644 --- a/Delmud/delmud_db/static/start.cs +++ b/Delmud/delmud_db/static/start.cs @@ -6,6 +6,7 @@ public override void Initialize() SetProperty("short", "Chamber of the swirling elements"); SetProperty("ambient light", LightingLevel.Bright); + OpenLink(Direction.NORTH, "area/beginning/secondroom"); MudObject.Move(new target(), this); }