This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Clark
committed
Feb 15, 2022
1 parent
ce43cef
commit 5eabb76
Showing
9 changed files
with
303 additions
and
178 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
from colorama import Fore, init | ||
from console_colors import consolecolor | ||
init() | ||
yel = Fore.YELLOW | ||
|
||
# Commands with help | ||
|
||
def nonstop_toggle_help(): | ||
print("Description: It prompts for turning the setting on or off. (i.e. nonstop is when the game will not prompt") | ||
print("you to play the game again, instead it repeats the game instantly, but you can stop the game by typing \"stop\"") | ||
print("Alias: ns_tog") | ||
|
||
def changedatacolor_help(): | ||
print("Description: It prompts for changing the data color by hexcode or name of a color.") | ||
print("Make sure you add the \"#\" before the hexcode, or specify an appropriate name of a color.") | ||
print("List of available named colors: "+yel+"https://matplotlib.org/stable/gallery/color/named_colors.html"+consolecolor) | ||
print("Alias: cdc") | ||
|
||
def currentdatacolor_help(): | ||
print("Description: Returns the current data color.") | ||
print("Alias: cdc") | ||
|
||
def game_help(): | ||
print("Description: Plays the game.") | ||
print("Alias: g") | ||
|
||
def changecharttype_help(): | ||
print("Description: It prompts for changing the chart type.") | ||
print("Alias: chct") | ||
|
||
def currentcharttype_help(): | ||
print("Description: Returns the current chart type.") | ||
print("Alias: cct") | ||
|
||
def isitnonstop_help(): | ||
print("Description: Returns \'Yes\' or \'No\' if the nonstop option is either enabled or disabled.") | ||
print("Alias: isitns") | ||
|
||
def resetsettings_help(): | ||
print("Description: Resets the entire settings.") | ||
print("Alias: reset") | ||
|
||
def changeconsolecolor_help(): | ||
print("Description: It prompts for changing the default console color.") | ||
print("Alias: chcc") | ||
|
||
def currentconsolecolor_help(): | ||
print("Description: Returns the current default console color.") | ||
print("Alias: ccc") | ||
|
Oops, something went wrong.