-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.py
1013 lines (1009 loc) · 41.6 KB
/
main.py
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import sys
Ans = ""
Name = ""
Genre = ""
XBucle = False
print ""
print " Darutik presents..."
print ""
print " 01000010 01110010 01101111 01111001 01100001"
print " More knowed as..."
print ""
print ""
print ""
print " ::::::::: ::::::::: :::::::: ::: ::: ::: "
print " :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: "
print " +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ "
print " +#++:++#+ +#++:++#: +#+ +:+ +#++: +#++:++#++: "
print " +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ "
print " #+# #+# #+# #+# #+# #+# #+# #+# #+# "
print " ######### ### ### ######## ### ### ### "
print ""
print ""
print ""
raw_input("")
print " When something like ==> apear, you must select a number."
raw_input("")
print ""
print ""
print " SOMEONE:"
print " Hello."
raw_input("")
print " YOU:"
print " He-hello...?"
raw_input("")
print "SOMEONE:"
print " Are you OK?"
print ""
print " 1. Yes..."
print " 2. Who are you?"
print " 3. I'm dead..."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print " YOU:"
print " Yes..."
raw_input("")
print " SOMEONE:"
print " Sure?"
raw_input("")
print " YOU:"
print " Yes, I'm right..."
raw_input("")
print " SOMEONE:"
print " What's your name?"
Name = raw_input("==> ")
print " " + Name + ":"
print " I'm... " + Name + "."
print " People call me " + Name + "..."
raw_input("")
print " SOMEONE:"
print " Okay, " + Name + ". I'm Kevin, and I found you near the river, in the East."
print " You were unconscious, so I let you in my house, inside the forest."
XBucle = True
elif Ans == "2":
print " YOU:"
print " Who are you?"
raw_input("")
print " SOMEONE:"
print " I'm Kevin. I found you near the river, in the East."
print " You were unconscious, so I let you in my house, inside the forest."
raw_input("")
print " KEVIN:"
print " So, you got it. Now let me ask you..."
print " How should I call you?"
Name = raw_input("==> ")
print " " + Name + ":"
print " I'm... " + Name + "."
print " People call me " + Name + "..."
XBucle = True
elif Ans == "3":
print " YOU:"
print " I'm dead..."
raw_input("")
print " SOMEONE:"
print " Yes, and I am Bill Gates."
print " So, how should I call you, ghost? Casper???"
Name = raw_input("==> ")
print " " + Name + ":"
print " I'm not Casper. I'm " + Name + "."
raw_input("")
print " SOMEONE:"
print " Sorry, " + Name + ", I'm not Bill Gates too."
raw_input("")
print " SOMEONE:"
print " I'm Kevin. I found you near the river, in the East."
print " You were unconscious, so I let you in my house, inside the forest."
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
XBucle = False
raw_input("")
print " " + Name + " and Kevin are in a bedroom of the house of Kevin."
print " The walls of the room are colored with blue colors."
print " " + Name + " is lying in the white bed. His backpack is placed in an empty desk wich have a classical lamp."
print " Kevin is sitting near " + Name + " in the same bed."
raw_input("")
print " " + Name + ":"
print " My backpack..."
raw_input("")
print " Kevin gived the Backpack to " + Name + "."
raw_input("")
print " " + Name + ":"
print " Wait."
raw_input("")
print " " + Name + ":"
print " I didn't have any backpack..."
raw_input("")
print " There is a tag with the name of someone in the backpack."
raw_input("")
print " KEVIN:"
print " Who is Broya?"
raw_input("")
print " " + Name + ":"
print " Broya..."
raw_input("")
print " " + Name + ":"
print " When you find me..."
raw_input("")
print " " + Name + ":"
print " ...I was alone?"
print " There aren't anyone more outside?"
raw_input("")
print " KEVIN:"
print " I didn't find any more than you and this backpack."
print " But..."
raw_input("")
print " KEVIN:"
print " Who is Broya???"
print ""
print " 1. Broya..."
print " 2. Broya..."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
Genre = "Male"
print " " + Name + ":"
print " Broya..."
print " Broya is my friend..."
raw_input("")
print " KEVIN:"
print " He was with you?"
raw_input("")
print " " + Name + ":"
print " Let me think..."
raw_input("")
print " " + Name + ":"
print " Yes..."
print " He was with me..."
raw_input("")
print " " + Name + ":"
print " I must help him!!!"
raw_input("")
print " KEVIN:"
print " (Stopping " + Name + ")"
print " Not now!"
raw_input("")
print " KEVIN:"
print " It's dark outside, and you aren't ready for the dangers."
print " Too dangerous for you now..."
raw_input("")
print " " + Name + ":"
print " ..."
raw_input("")
print " KEVIN:"
print " You can search him tomorrow."
print " He'll be ok..."
raw_input("")
print ""
print " " + Name + " is sleeping, when a computer sound wake him..."
print ""
raw_input("")
print ""
print " " + Name + ":"
print " What..."
print " What's this?"
raw_input("")
print ""
print " ..."
raw_input("")
print ""
print " ..."
raw_input("")
print ""
print " " + Name +":"
print " What should I do now?"
print ""
print " 1. Ignore it and sleep."
print " 2. Go and see what's up there."
print " 3. Sing a song loudly."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
PlayerDream = True
print ""
print " " + Name + ":"
print " I should be sleeping."
print " I need energy to find Broya tomorrow..."
raw_input("")
print ""
print " " + Name + " go back to the bed, and close his eyes."
raw_input("")
print "..."
raw_input("")
print "..."
raw_input("")
print "..."
raw_input("")
print ""
print " KEVIN:"
print " Uf..."
raw_input("")
print ""
print " KEVIN:"
print " This was close..."
XBucle = True
elif Ans == "2":
PlayerDream = True
print ""
print " " + Name + ":"
print " Hmm..."
raw_input("")
print ""
print " " + Name + " go to take a look out there."
print " What can be that sound?"
raw_input("")
print ""
print " " + Name + " walk to the source of the sound."
raw_input("")
print ""
print " The sound come from a computer."
print " The computer is powered"
raw_input("")
print ""
print " " + Name + " is in a dark room illuminated by the computer screen."
print " There are normal things everywhere."
raw_input("")
print ""
print " In the wall there is a big paper with the logo of a company."
raw_input("")
print ""
print " " + Name + ":"
print " 'NEXTMIND Laboratories'..."
raw_input("")
print ""
print " " + Name + ":"
print " I don't remember this name."
print " Hmm..."
raw_input("")
print ""
print " " + Name + " don't know what to do..."
raw_input("")
while (XBucle != True):
print ""
print " 1. See what's showing the screen."
print " 2. Open the drawer of the table."
print " 3. Turn on the lights."
print " 4. Go back to the bed."
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " The screen shows a chat window."
raw_input("")
print ""
print " 1. Read it."
print " 2. Do nothing."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
PlayerDream = False
print ""
print " Marlo Rekreff (@Paco77) [_] [ ] [x]"
print " ----------------------------------------------"
print " A FEW DAYS AGO"
print " @Paco77"
print " Look at this men!"
print " http://www.darutik.deviantart.com/"
print " He have great drawings and poems..." # Subliminal ad...
print ""
print " @KevinAFM"
print " Yeah, but I love more this one:"
print " http://www.kalexshi.deviantart.com/"
print " He drawed very well too... :(" # R.I.P. (;_・)
print ""
raw_input("")
print ""
print " TWO DAYS AGO"
print " @Paco77"
print " We have a few new subjects down here."
print ""
print " @KevinAFM"
print " Yes? What about they?"
print ""
print " @Paco77"
print " They are from the city."
print " Five homeless that NEXTMIND caught."
print ""
print " @KevinAFM"
print " What experiment are going to try with them?"
print " It's boring living here, alone..."
print ""
print " @Paco77"
print " Well, we are under maintenance, so they are on"
print " a cell waiting to the experiments."
print " Don't worry. Coming soon I'll visit you ;)"
print ""
print " @KevinAFM"
print " What would think our bosses about this chat?"
print ""
print " @Paco77"
print " Do you really think that they can think?"
print " The only brains who think down here are the"
print " scientifics' brains!"
raw_input("")
print " @KevinAFM"
print " Hahaha!"
print " Great one friend..."
print ""
print " @Paco77"
print " And you? What happens in the surface???"
print ""
print " @KevinAFM"
print " Nothing interesting..."
print " Only hunter and eating. And browsing some photos"
print " You know... ;)"
print ""
print " @Paco77"
print " Sorry, but I can't be online more."
print " My boss is calling me!"
print ""
print " YESTERDAY"
print " @Paco77"
print " Kevin, if you see someone arround there, caught them."
print " When we are testing with the second new subject, the"
print " other subjects escaped from the cell!"
print ""
print " @Paco77"
print " Kevin, please answer me as soon as posible..."
print ""
raw_input("")
print " 19 HOURS AGO"
print " @KevinAFM"
print " Sorry, I was hunting some food..."
print " So, they escaped from the hands of NEXTMIND?"
print ""
print " @Paco77"
print " Yes, they are two."
print " The third was fired by a security guard..."
print ""
print " @KevinAFM"
print " OK, then I'm going to look outside."
print " They will survive to the forest?"
print ""
print " ONE HOUR AGO"
print " @KevinAFM"
print " Hey, I found something!"
print " A man called " + Name + " in the forest."
print ""
print " @Paco77"
print " Sure? Let me search his name..."
print ""
print " @KevinAFM"
print " He was unconscious. He weared an empty bag"
print " with the name of Broya written in a tag."
print ""
print " @Paco77"
print " Broya?"
raw_input("")
print " @KevinAFM"
print " Yes. " + Name + " says that he doesn't remember"
print " him."
print " I don't know if " + Name + " is lying me or he's"
print " truly lost."
print ""
print " @Paco77"
print " Ok, I got " + Name + "'s history in my screen."
print " I'll look for Broya later. My boss is calling me"
print " again..."
print ""
print " @KevinAFM"
print " Well, then I'm going to keep " + Name + " here."
print " See you!"
print ""
raw_input("")
XBucle = True
elif Ans == "2":
print ""
print " " + Name + ":"
print " I'll not break his privacy..."
raw_input("")
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
XBucle = False
elif Ans == "2":
print ""
print " " + Name + " open the drawer of the table."
raw_input("")
print " There is only a 'The Wall' album..."
raw_input("")
print " ..."
raw_input("")
print ""
print " Hey! Theres an ID Card too."
print ""
print " 1. Read it."
print " 2. Close the drawer."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
PlayerDream = False
print ""
print " NEXTMIND Laboratories"
print ""
print " Employee card!"
print ""
print " NAME:"
print " Kevin Reverguntter Lymphelt"
print ""
print " <There's a BIDI code at the bottom>"
raw_input("")
print " It will take you to more info about Kevin..."
raw_input("")
XBucle = True
elif Ans == "2":
print ""
print " " + Name + " close slowly the drawer."
raw_input("")
print ""
print " ...and nothing happened."
raw_input("")
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
elif Ans == "3":
print ""
print " " + Name + " press the button on the wall."
raw_input("")
print " And the light become..."
raw_input("")
print ""
print " ..."
print ""
raw_input("")
print ""
print " ..."
print ""
raw_input("")
print ""
print " " + Name + " press the button on the wall again."
print " And the darkness came again to the room, broke by the screen..."
raw_input("")
print ""
print " " + Name + ":"
print " Consuming too much energy."
print " Think in the trees..."
raw_input("")
XBucle = False
elif Ans == "4":
print ""
print " " + Name + ":"
print " I should go to sleep..."
raw_input("")
print ""
print " " + Name + ":"
print " What will happen if Kevin sees me here?"
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
XBucle = True
elif Ans == "3":
PlayerDream = True
print ""
print " " + Name + ":"
print " Para bailar la bamba!!!"
raw_input("")
print ""
print " " + Name + ":"
print " Para bailar la bamba!"
print " Se necesita"
print " Una poca de gracia!!!"
raw_input("")
print ""
print " KEVIN:"
print " Urg..."
raw_input("")
print ""
print " " + Name + ":"
print " Una poca de gracia!"
print " Pa mi pa ti"
print " Ay y arriba y arriba!!!"
raw_input("")
print ""
print " KEVIN:"
print " WTF?!!!"
raw_input("")
print ""
print " " + Name + ":"
print " Yo no soy marinero!!!"
raw_input("")
print ""
print " KEVIN:"
print " What are you doing???!"
raw_input("")
print ""
print " " + Name + ":"
print " Yo no soy marinero!"
raw_input("")
print ""
print " KEVIN:"
print " SHUT UP!!!"
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
print ""
print " KEVIN:"
print " What you're thinking about?!!!"
raw_input("")
print ""
print " 1. I can't sleep..."
print " 2. You don't like 'La bamba'???"
print " 3. I listened a sound..."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " " + Name + ":"
print " I can't sleep..."
raw_input("")
print ""
print " KEVIN:"
print " What?"
raw_input("")
print ""
print " KEVIN:"
print " Now you are a kid?"
raw_input("")
print " ..."
raw_input("")
print ""
print " KEVIN:"
print " Go back to the bed..."
print " Don't be a child..."
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
print ""
print " KEVIN:"
print " And " + Name + "..."
raw_input("")
print ""
print " KEVIN:"
print " If you are tired tomorrow, you will not be able to"
print " find Broya."
raw_input("")
print ""
print " " + Name + ":"
print " !!!"
XBucle = True
elif Ans == "2":
print ""
print " " + Name + ":"
print " You don't like 'La bamba'???"
raw_input("")
print ""
print " KEVIN:"
print " No, I love 'La Bamba'."
raw_input("")
print ""
print " KEVIN:"
print " I only hate 'La Bamba' when someone sing it"
print " loudly at TWO O'CLOCK, AT NIGHT!"
raw_input("")
print ""
print " KEVIN looks angry."
raw_input("")
print ""
print " Suddenly, KEVIN target the Guest's Room of his house."
raw_input("")
print ""
print " KEVIN:"
print " Please, don't wake up at night again..."
raw_input("")
print ""
print " " + Name + ":"
print " Sorry..."
XBucle = True
elif Ans == "3":
print ""
print " " + Name + ":"
print " I listened a sound..."
raw_input("")
print ""
print " KEVIN:"
print " We are in the forest."
raw_input("")
print ""
print " KEVIN:"
print " There are hundreds of wild animals around us!"
print " Right now!!!"
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
print ""
print " KEVIN:"
print " You should go back to bed."
print " And ignore the sounds from the outside."
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
raw_input("")
print ""
raw_input("")
print ""
print " In the next day, " + Name + " and Kevin wake up."
raw_input("")
print ""
print " As Kevin prepare the breakfast, " + Name + " wanted to ask somthing to him."
raw_input("")
print ""
print " 1. What's out there, in the forest?"
print " 2. Do you know how to touch a wall with an apple?"
print " 3. Did you listen a strangle sound at night?"
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " " + Name + ":"
print " What's out there, in the forest?"
raw_input("")
print ""
print " KEVIN:"
print " Well..."
raw_input("")
print ""
print " KEVIN:"
print " Do you know what kind of animals usually are on the forest?"
print ""
print " 1. Yes"
print " 2. No"
print " 3. Don't press the '3' button..."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " " + Name + ":"
print " Yes, I know a bit about animals and these things."
raw_input("")
print ""
print " KEVIN:"
print " Well."
print " Then..."
raw_input("")
print ""
print " KEVIN:"
print " Then forgot what you should see at a forest."
raw_input("")
print ""
print " " + Name + ":"
print " What?"
raw_input("")
print ""
print " " + Name + ":"
print " Why..."
print " ?"
raw_input("")
print ""
print " KEVIN:"
print " Well, this is not a regullar forest."
raw_input("")
print ""
print " " + Name + ":"
print " So, this is a irregular forest, ah?"
raw_input("")
print ""
print " KEVIN:"
print " You can call it... 'amazing'"
raw_input("")
XBucle = True
elif Ans == "2":
print ""
print " " + Name + ":"
print " No, I'm an absolutely noob in these topics..."
raw_input("")
print ""
print " KEVIN:"
print " Well, so..."
print " Are you hard?"
raw_input("")
print ""
print " " + Name + ":"
print " I'm a city man..."
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
print ""
print " " + Name + ":"
print " Not too hard at all"
raw_input("")
print ""
print " KEVIN:"
print " Hmm..."
raw_input("")
print ""
print " KEVIN:"
print " How can I explain you...?"
raw_input("")
print ""
print " KEVIN:"
print " ..."
raw_input("")
XBucle = True
elif Ans == "3":
print ""
print " SYSTEM:"
print " I told you that you cannot do that."
raw_input("")
print " You are an stupid thing..."
raw_input("")
XBucle = False
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
print ""
print " KEVIN:"
print " Anyway, you should be prepared for your search"
XBucle = True
elif Ans == "2":
print ""
print " " + Name + ":"
print " Do you know how to touch a wall with an apple?"
raw_input("")
print ""
print " KEVIN:"
print " I watched the video too..."
raw_input("")
print ""
print " " + Name + ":"
print " But you know how to do it with any color???"
raw_input("")
print ""
print " KEVIN:"
print " Yes..."
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
XBucle = True
elif Ans == "3":
print ""
print " " + Name + ":"
print " Did you listen a strangle sound at night?"
raw_input("")
print ""
print " KEVIN:"
print " No..."
raw_input("")
if PlayerDream == True:
print ""
print " KEVIN:"
print " I was with the computer until midnight, and I didn't hear anything..."
print ""
print " 1. Computer?"
print " 2. Headphones..."
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " " + Name + ":"
print " Do you have a computer?"
raw_input("")
print ""
print " " + Name + ":"
print " Here???"
raw_input("")
print ""
print " KEVIN:"
print " Err... yes..."
raw_input("")
print ""
print " KEVIN:"
print " No?"
raw_input("")
print ""
print " " + Name + ":"
print " Can you let me check my Twitter? Facebook? VK? Last.fm? My Space?"
print " YouTube? deviantART? GitHub? TaikoTime? Furaffinity? Google+?"
print " Yo? Steam? Skype? Whatsapp? Line? Telegram? Twitch?"
raw_input("")
print ""
print " KEVIN:"
print " ¬ ¬"
raw_input("")
print ""
print " " + Name + ":"
print " No?"
raw_input("")
print ""
print " KEVIN:"
print " ..."
raw_input("")
print ""
print " KEVIN:"
print " No"
raw_input("")
print ""
print " " + Name + ":"
print " ..."
raw_input("")
print ""
print " " + Name + ":"
print " Forget it..."
raw_input("")
XBucle = True
elif Ans == "2":
print ""
print " " + Name + ":"
print " Headphones..."
raw_input("")
print ""
print " KEVIN:"
print " Nani?"
raw_input("")
print ""
print " " + Name + ":"
print " I mean, you were listening to music, do you?"
raw_input("")
print ""
print " " + Name + ":"
print " Technologyc?" #Daft Punk
print " Seirogan2000?" #Taiko no Tatsujin!
print " Hungarian Rhapsody No.2?" #Better with stepped motors xD
print " The Wall?" #Pink Floyd
raw_input("")
print ""
print " KEVIN:"
print " I hate The Wall!"
raw_input("")
print ""
print " 1. But you have it!" #Die, player..
print " 2. I hate it too" #False xD It's awesome!
print " 3. It's the best album EVER!" #and Alive2007
while (XBucle != True):
Ans = raw_input("==> ")
if Ans == "1":
print ""
print " " + Name + ":"
print " But you have it!"
raw_input("")
print ""
print " KEVIN:"
print " What?"
raw_input("")
print ""
print " " + Name + ":"
print " You have 'The Wall' on your Drawer"
raw_input("")
print ""
print " Kevin looks upset, thinking about something fast..."
raw_input("")
print ""
print " " + Name + ":"
print " Are you listening to-"
raw_input("")
print ""
print " But " + Name + " never finished that sentence..."
raw_input("")
print ""
print " Kevin triggered his sleeping gun before " + Name + "'s brain noticed that"
print " Kevin was with a hand near his waist, were that gun was."
raw_input("")
print ""
print " And " + Name + " fell down to the floor, while Kevin was pressing"
print " some buttons on his phone."
raw_input("")
print ""
print " KEVIN:"
print " Marlo! I..."
raw_input("")
raw_input("")
raw_input("")
print " end"
raw_input("")
print " ?"
raw_input("")
XBucle = True
sys.exit()
elif Ans == "2":
print ""
print " " + Name + ":"
print " Well, I hate it too..."
raw_input("")
print ""
XBucle = True
elif Ans == "3":
print ""
print " " + Name + ":"
print " How you can say that???"
raw_input("")
print ""
print " " + Name + ":"
print " It's the best album EVER!!!"
print " <3" #xD
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
elif PlayerDream == False:
print ""
else:
print "/*/ERROR/*/"
raw_input("")
XBucle = True
else:
print " SYSTEM:"
print " I don't like what you are saying..."
raw_input("")
XBucle = False
print ""
print " KEVIN:"
print " So, in two hours your're gonna be at the forest"
raw_input("")
print ""
print " KEVIN:"
print " Alone"
raw_input("")
XBucle = True
elif Ans == "2":
Genre = "Female"
print " " + Name + ":"
print " Broya.."
print " Broya is my partner..."
raw_input("")
print " KEVIN:"
print " Your partner???"
print " You mean your journey partner, no?"
raw_input("")
print " " + Name + ":"
print " I supose..."
print " I only know that I have this word recorded on my mind..."
raw_input("")
print ""