From adf7383c9fae365a124044caa64ff6c7e0b33da3 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Wed, 17 Feb 2021 16:23:43 -0500 Subject: [PATCH] Update main.py --- Adventure Game/adventure_game/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Adventure Game/adventure_game/main.py b/Adventure Game/adventure_game/main.py index 0a9c462..57e3c0e 100644 --- a/Adventure Game/adventure_game/main.py +++ b/Adventure Game/adventure_game/main.py @@ -14,6 +14,8 @@ class GameNavigator(npyscreen.Form): self.artBox = self.add(npyscreen.BoxBasic, name='Inventory', max_width=20, max_height=20, relx=1, rely=2) + self.DialogueBox = self.add(npyscreen.BoxBasic, name='Type Here', max_width=20, max_height=20, relx=1, rely=2) + #self.myName = self.add(npyscreen.TitleText, name='Name') #self.myDepartment = self.add(npyscreen.TitleSelectOne, scroll_exit=True, max_height=3, name='Department', # values=['Department 1', 'Department 2', 'Department 3']) @@ -26,7 +28,8 @@ class MainMenu(npyscreen.Form): self.parentApp.setNextForm('GAME') def create(self): - self.playerSaveLocation = self.add(npyscreen.TitleFilenameCombo, name="Filename:") + self.add(npyscreen.FixedText, value='You cannot select a file yet! Just hit OK', editable=False) + self.playerSaveLocation = self.add(npyscreen.TitleFilenameCombo, name="Your save file:") self.add(npyscreen.MultiLineEdit, value=self.parentApp.gamelib['menu']['graphics']['logo'], editable=False)