MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / help_screen

Function help_screen

TEXTVENTURE/game.py:246–262  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

244This function displays the help screen and calls the main screen function.
245"""
246def 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"""

Callers 1

main_screen_selectionFunction · 0.85

Calls 1

main_screen_selectionFunction · 0.85

Tested by

no test coverage detected