This repository was archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain.py
More file actions
115 lines (115 loc) · 3.5 KB
/
Main.py
File metadata and controls
115 lines (115 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import time
import os
from codestuffdontread import end1
from codestuffdontread import win1, check_update
## update = check_update()
time.sleep(2)
print('You wake up to find pitchforks and fire coming to your house')
time.sleep(2)
print('The vilagers are shouting "DEATH TO THE WITCH"')
time.sleep(5)
print('"Oh no", you think "They know the witch is here"')
time.sleep(7)
print('What do you want to do?')
time.sleep(2)
print('Type 1 To try to trick the villagers to set fire to A diffrent house')
print('Type 2 to try to set fire to them')
print('Type 3 to splash them in water')
print('Type 4 to run')
q1 = input("What do you want to do?: ")
if q1 == '4':
win1()
if q1 == '1':
print('You leave your house and start talking')
time.sleep(2)
print('"What witch?" You ask')
time.sleep(2)
print('"Dont play dumb with us" someone shouts back')
time.sleep(2)
print('"Ohhhh the one at tommys house" you reply')
time.sleep(2)
print('"No i dont have a witch at my house" tommy replys')
time.sleep(2)
print('"Ive seen it" you say')
time.sleep(2)
print('Tommy says "no you havent"')
time.sleep(2)
print('"You havent come out of your house in 3 days"')
time.sleep(7)
print('Your house is destoryed, and you are hanged for your crime')
time.sleep(2)
end1()
if q1 == '2':
time.sleep(2)
print('How do you want to set them on fire')
time.sleep(2)
print('Type 1 to come out and use a candle to light them on fire')
print('Type 2 to throw paper planes (with fire) at them')
time.sleep(4)
q22 = input('Whats your pic?: ')
if q22 == '1':
print('When lighting the candle you set fire to your self')
time.sleep(2)
print('You died')
time.sleep(2)
print('You have failed')
time.sleep(2)
print('Thanks for playing')
time.sleep(10)
if q22 == '2':
print('After lighting the paper planes you thow them')
time.sleep(2)
print('You miss you target and hit a child')
time.sleep(2)
print('He runs seting fire to every one before jumping in to a river')
time.sleep(2)
print('The child lives but everyone else does not')
time.sleep(2)
print('You left the candle you used to light the plane under your bed and its now on fire')
time.sleep(4)
print('It sets fire to your house and you')
time.sleep(2)
print('You died for allmost killing a child')
time.sleep(6)
end1()
if q1 == '3':
time.sleep(4)
print("How do you want to do it?")
time.sleep(2)
print('Type 1 to use the hose')
print('type 2 to use some random jars filled with water')
time.sleep(5)
q13 = input("Whats your pic?")
if q13 == '1':
time.sleep(10)
print('When you tern on the hose the pipes explode from under the vliagers and you knock them of there feet')
time.sleep(2)
print('The water puts out the fire')
time.sleep(2)
print('The villagers are running for you')
time.sleep(2)
print('What do you want to do?')
time.sleep(4)
print('Type 1 to run')
print('Type 2 to eat a snack')
print('Type 3 to do nothing')
q23 = input('Whats your pic?: ')
if q23 == 2:
time.sleep(2)
print('Before geting your snack you get killed by the villagers')
time.sleep(2)
end1()
if q23 == 3:
time.sleep(2)
print('The villagers kill you')
time.sleep(2)
end1()
if q23 == 1:
win1()
elif q13 == '2':
time.sleep(2)
print('The jars are not filled with water')
time.sleep(6)
print('The jars do nothing to the fire and your house is burned to the ground')
time.sleep(3)
end1()