Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 78f87e3

Browse files
authoredOct 11, 2017
Added Shutdown
1 parent cd1e001 commit 78f87e3

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed
 

‎Computer

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ if Username == "USER" and Password == "PASS":
2424
print("Loading...")
2525
Computer_help += 1
2626
sleep(1.0)
27-
if Computer_help == 5:
27+
if Computer_help == 4:
2828
Computer = 2
2929
while Computer == 2:
30-
print("Enter Internet or Home")
30+
print("Enter Internet")
3131
inp = input()
3232
if inp == "Internet":
3333
Internet_help = 1
@@ -36,26 +36,31 @@ if Username == "USER" and Password == "PASS":
3636
while Searchingin == 0:
3737
if Computer == 3:
3838
if inp == "Internet":
39+
sleep(1.0)
3940
print("What do you want to search for?")
4041
Searching = input()
4142
print("Searching for : "+Searching)
4243
if Searching == "Google":
4344
sleep(1.0)
4445
print("Going to Google")
45-
Searchingin = 1
46+
Searchingin = 0
4647
elif Searching == "List":
4748
sleep(1.0)
48-
print("Google, Minecraft, Gmail")
49+
print("Google, Minecraft, Gmail, Shut Down")
50+
Searchingin = 0
51+
elif Searching == "Shut Down":
52+
sleep(1.0)
53+
print("Shutting Down")
4954
Searchingin = 1
5055
elif Searching == "Minecraft":
5156
sleep(1.0)
5257
print("Opening Minecraft")
53-
Searchingin = 1
58+
Searchingin = 0
5459
elif Searching == "Gmail":
5560
sleep(1.0)
5661
print("Opening gmail")
5762
gmail = 1
58-
Searchingin = 1
63+
Searchingin = 0
5964
if gmail == 1:
6065
sleep(1.0)
6166
print("Enter Send or check")
@@ -74,9 +79,7 @@ if Username == "USER" and Password == "PASS":
7479
Searchinginput = input()
7580
if Searchingin == "No results found, click enter to try again":
7681
Searchingin = 0
77-
elif inp == "Home":
78-
print("Opening Home")
79-
Searchingin = 1
80-
# Adding More Here
81-
82+
while Searchingin == 1:
83+
print("Shutting Down")
84+
Searchingin = 0
8285

0 commit comments

Comments
 (0)
Please sign in to comment.