()
| 244 | This function displays the help screen and calls the main screen function. |
| 245 | """ |
| 246 | def help_screen(): |
| 247 | os.system('clear') |
| 248 | |
| 249 | # Displaying the Title |
| 250 | print("\t#############################################\n") |
| 251 | print("\t🎮 Welcome to TEXVENTURE ROG 🎮\n") |
| 252 | print("\t#############################################\n") |
| 253 | |
| 254 | # Displaying the Help Screen |
| 255 | print("\n\tHelp Screen\n ") |
| 256 | print("\t[1] Use 'up', 'down', 'left', and 'right' to move around,\n") |
| 257 | print("\t[2] Type the commands to perform actions.\n") |
| 258 | print("\t[3] Type 'look' to look around,\n") |
| 259 | print("\n\tMade with ❤️" + " and 🐍 by RAO.exe\n") |
| 260 | |
| 261 | # Calling the main screen selection function |
| 262 | main_screen_selection() |
| 263 | |
| 264 | # ---- Quit Game Function ---- # |
| 265 | """ |
no test coverage detected