-
Notifications
You must be signed in to change notification settings - Fork 0
/
keegansgameold.cmd
executable file
·1610 lines (1469 loc) · 35 KB
/
keegansgameold.cmd
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
@echo off
color 0b
title Keegan's Game
set pocketboy = 0
set questaccept = 0
:Scriptstart
:: Dang this is taking too long to make. I wish I could code faster.
echo Welcome to Keegan's Quest: The Story of the Time Travel War
pause
echo.
echo Are you ready to start? If so, select "New Game". Or, select "Load Game" to go to the chapter that you are on. But, if you don't want to play, select "Leave Game".
echo.
:: cmdMenuSel made by Nave GCT.
cmdMenuSel f870 "New Game" "Load Game" "Leave Game" "Test"
if %ERRORLEVEL% == 1 goto wakeupboi
if %ERRORLEVEL% == 2 goto Loadgame
if %ERRORLEVEL% == 3 exit
if %ERRORLEVEL% == 4 goto c4usekeypocketboy
goto wakeupboi
:Loadgame
cls
echo Type in your code here.
set /p chaptercode=Code:
if "%chaptercode%" == "15201" goto Chapter1
if "%chaptercode%" == "97109" goto Chapter2
if "%chaptercode%" == "61042" goto c2housemap
if "%chaptercode%" == "47728" goto Chapter3
if "%chaptercode%" == "09315" goto c4start
:invalidcode
echo.
echo That was an invalid chapter code. Try again.
pause
goto Loadgame
:wakeupboi
cls
echo Chapter 0: Wake Up!
echo.
echo Kameron: Keegan, you have to wake up!
pause
echo.
echo Keegan gets up with a annoyed tone.
pause
:timetotalklol
echo.
echo Responces:
echo.
cmdMenuSel f870 "Why did you wake me up?!" "What's wrong?" "Let me sleep..."
if %ERRORLEVEL% == 1 goto res1
if %ERRORLEVEL% == 2 goto res2
if %ERRORLEVEL% == 3 goto res3
goto wakeupboi
:res1
cls
echo Kameron: Dude! Chill...
pause
echo.
echo Keegan: What is it then?!
pause
echo.
echo Kameron: Elias tasked me and you with a mission.
pause
echo.
echo Keegan: What mission?
pause
echo.
echo Kameron: Elias wants me to work on some time traveling machine, and you have to test it.
pause
echo.
echo Keegan: Got it. Ready when you are.
pause
echo.
echo Kameron: Ok, head to the VR Room, and when you are done, head to me.
pause
echo.
echo Keegan: Got it.
pause
goto howtoplay
:res2
cls
echo Kameron: Elias tasked me and you with a mission.
pause
echo.
echo Keegan: What mission?
pause
echo.
echo Kameron: Elias wants me to work on some time traveling machine, and you have to test it.
pause
echo.
echo Keegan: Got it. Ready when you are.
pause
echo.
echo Kameron: Ok, head to the VR Room, and when you are done, head to me.
pause
echo.
echo Keegan: Got it.
pause
goto howtoplay
:res3
cls
echo Kameron: There is no time to sleep!
pause
goto timetotalklol
:howtoplay
cls
echo Chapter 0.5: The Tutorial
echo.
echo Kameron: Hello, it seems that you want to play right?
pause
echo.
echo Kameron: Alright.
pause
echo.
echo Kameron: So, you will be taking the role of my brother, the owner of the base Fort Bradley, which was created by the team me and my brother is a part of, called "The Ghosts".
pause
echo.
echo Kameron: Why am I telling you this?
pause
echo.
echo Kameron: So you know what my game is about.
pause
echo.
echo Kameron: And now, time for the tutorial!
pause
echo.
echo Kameron: You ready? Let's go.
pause
echo.
echo Kameron: Go ahead, Game.
pause
echo.
echo Ok, first off, there is commands that you will use thoughout your adventure.
pause
echo.
echo There are different commands that you will need to select.
pause
echo.
echo There will also be a map. Let me show what the symbols mean. "[" means that there is a wall there. "." means you can move there. "A" means that is a interactable area. "K" is you. "E" is a examinable area. "T" means you can talk to it.
pause
echo.
echo Here's a map.
pause
echo -----
echo [K.A]
echo -----
pause
echo.
echo Do you see that "K"? That is you! That is what you will be moving around.
pause
echo.
echo Alright, now for the commands.
pause
echo.
echo If you saw on the map, you can go east. So, let's go east.
pause
goto howtoplaycommands
:howtoplaycommands
echo.
echo To move east, select east. Simple as that.
cmdMenuSel f870 "East"
if %ERRORLEVEL% == 1 goto howtoplay2
:howtoplayic
echo.
echo You type invalid code! Try again.
pause
goto howtoplaycommands
:howtoplay2
cls
echo -----
echo [.KA]
echo -----
echo.
echo You have now move next to the interactive object, nice job!
pause
echo.
echo Now, time to interact with the object, which will end the tutorial, let's go!
echo Select "use" to use the object.
cmdMenuSel f870 "Use"
if %ERRORLEVEL% == 1 goto howtoplay3
:howtoplay3
cls
echo Kameron: So, since you hit the button, now we're going to head to the game. So, let's go!
pause
goto Chapter1code
:Chapter1code
cls
echo.
echo Before continuing, save this code somewhere so that you can come back to this: 15201
pause
goto Chapter1
:Chapter1
cls
echo Chapter 1: The Device
echo.
echo Kameron: Alright, Keegan. I'm almost done with the machine.
pause
echo.
echo Keegan: Could you please hurry up?
pause
echo.
echo Kameron: Yeah, I'm almost done. Why don't you go to the computer over there and play some games while you wait.
pause
echo.
echo Keegan: You got it.
pause
goto movecomputermap
:movecomputermap
cls
echo ------
echo [A.KT]
echo ------
echo.
cmdMenuSel f870 "Talk" "West"
if %ERRORLEVEL% == 1 goto talkcomputermap
if %ERRORLEVEL% == 2 goto movecomputermap2
:talkcomputermap
cls
echo.
echo You are chatting with: Kameron
pause
echo.
echo Keegan: Hey.
pause
echo.
echo Kameron: I'm not done yet, go on the computer, or something.
pause
echo.
echo Keegan: Ok.
pause
goto movecomputermap
:movecomputermap2
cls
echo ------
echo [AK.T]
echo ------
echo.
cmdMenuSel f870 "Use" "East"
if %ERRORLEVEL% == 1 goto Chapter1aftercomputer
if %ERRORLEVEL% == 2 goto movecomputermap
:Chapter1aftercomputer
echo Keegan heads towards the computer and turns it on.
pause
echo.
echo Kameron: Oh yeah, I got your favorite game on there.
pause
echo.
echo Keegan: YES!
pause
echo.
echo Keegan jumps on the computer chair and starts playing the game on the computer.
pause
echo.
echo Keegan makes it through the first level, and then............
pause
echo.
echo Kameron: It's done!
pause
echo.
echo Keegan: Alright, I'm coming!
pause
goto acmap
:acmap
cls
echo ------
echo [AK.T]
echo ------
echo.
cmdMenuSel f870 "Use" "East"
if %ERRORLEVEL% == 1 goto acuse
if %ERRORLEVEL% == 2 goto acmap2
:acuse
cls
echo Keegan: I already used that. Kameron's calling me to him.
pause
goto acmap
:acmap2
cls
echo ------
echo [A.KT]
echo ------
echo.
cmdMenuSel f870 "Talk" "East"
if %ERRORLEVEL% == 1 goto Chapter1kameron
if %ERRORLEVEL% == 2 goto acmap
:Chapter1kameron
cls
echo You are chatting with: Kameron
pause
echo.
echo Keegan: I'm here.
pause
echo.
echo Kameron: Alright, now, let me install this chip in your cyber glove.
pause
echo.
echo Keegan: Alright.
pause
echo.
echo Kameron installs the chip into Keegan's glove, and it turns on.
pause
echo.
echo Kameron: Now you will be able to time travel!
pause
echo.
echo Keegan: Neat.
pause
echo.
echo Kameron: Do you want to test it?
pause
echo.
echo Keegan: Sure.
pause
echo.
echo Kameron: Where do you want to go?
pause
echo.
echo Keegan: Normandy, June 6, 1944.
pause
echo.
echo Kameron: Ok, let's go.
pause
echo.
echo Kameron: 3.
pause
echo.
echo Kameron: 2.
pause
echo.
echo Kameron: 1.
pause
echo.
echo Kameron pulls the switch, and Keegan teleports to Normandy.
pause
cls
echo End of Chapter 1.
pause
goto Chapter2Code
:Chapter2Code
cls
echo Load Chapter Code: 97109
pause
echo.
echo When you are ready,
pause
goto Chapter2
:Chapter2
cls
echo Chapter 2: Normandy
echo.
echo Keegan is blinded by the dark, until he sees the light. He enters the light, and he is now in Normandy.
pause
echo.
echo Keegan: Nice, I made it to Normandy.
pause
echo.
echo ???: Schnell! Suche Deckung! (Quick! Find cover!)
pause
echo.
echo Keegan: Crap! It's the Germans! I shouldn't get in their line of sight.
pause
goto Chapter2map
:Chapter2map
cls
echo ---D---
echo [ . ]
echo [? ]
echo --- ]
echo K . ]
echo -------
echo.
echo commands: east
echo.
echo New Symbols: "B" is a "bad guy". You want to try and kill them. "D" is a door. "?" is an unknown object.
cmdMenuSel f870 "East" "Earpiece"
if %ERRORLEVEL% == 1 goto Chapter2map2
if %ERRORLEVEL% == 2 goto Chapter2mapchat1
:c2mapic
echo.
echo That was an invalid command, try again.
pause
goto Chapter2map
:Chapter2mapchat1
cls
echo Keegan: What should I do?
:Chapter2map2
cls
echo ---D---
echo [ . ]
echo [? ]
echo --- ]
echo . K ]
echo -------
echo.
echo commands: examine, north
cmdMenuSel f870 "Examine" "North"
if %ERRORLEVEL% == 1 goto Echapter2map2
if %ERRORLEVEL% == 2 goto chapter2death1
:c2map2ic
echo.
echo That was an invalid command, try again.
pause
goto Chapter2map2
:chapter2death1
cls
echo Keegan was caught, and was thrown into Prison for trespassing.
pause
echo.
echo Want to goto the nearest checkpoint?
echo.
echo commands: yes, no
cmdMenuSel f870 "Yes" "No"
if %ERRORLEVEL% == 1 goto Chapter2map
if %ERRORLEVEL% == 2 goto c2leave
:c2leave
cls
echo When you are ready to come back, use this code: 97109
pause
exit
:Echapter2map2
cls
echo Keegan: Looks like there is a Nazi there. That's not good.
pause
cls
echo ---D---
echo [ . ]
echo [B ]
echo --- ]
echo . K ]
echo -------
echo.
echo commands: call, north
cmdMenuSel f870 "Call" "North"
if %ERRORLEVEL% == 1 goto c2cmap
if %ERRORLEVEL% == 2 goto chapter2death1
:ec2map
echo.
echo That was an invalid command, try again.
pause
goto Echapter2map2
:c2cmap
cls
echo ---D---
echo [ . ]
echo [ B ]
echo --- ]
echo . K ]
echo -------
echo.
echo commands: wait
cmdMenuSel f870 "Wait"
if %ERRORLEVEL% == 1 goto c2cmap2
:c2cmapic
echo.
echo That was an invalid command, try again.
pause
goto c2cmap
:c2cmap2
cls
echo ---D---
echo [ . ]
echo [ ]
echo ---B ]
echo K ]
echo -------
echo.
echo commands: ko
cmdMenuSel f870 "KO" " "
if %ERRORLEVEL% == 1 goto c2mapko
if %ERRORLEVEL% == 2 goto c2smapko
:c2cmap2ic
echo.
echo That was an invalid command, try again.
pause
goto c2cmap2
:c2mapko
cls
echo Keegan chokes the Nazi til the guy is knocked out.
pause
echo.
echo Keegan: Well, now I can get to somewhere safer.
pause
goto c2mapko0
:c2smapko
echo Keegan jumps out and yells "Boo!" at the Nazi.
pause
echo.
echo The German yells, and falls dead from getting so scared.
pause
echo.
echo Keegan: Well, that was interesting
pause
goto c2mapko0
:c2mapko0
cls
echo ---D---
echo [ . ]
echo [ ]
echo --- ]
echo K ]
echo -------
echo.
echo commands: north
cmdMenuSel f870 "North"
if %ERRORLEVEL% == 1 goto komapdoor
:komapdoor
cls
echo ---D---
echo [ K ]
echo [ ]
echo --- ]
echo . ]
echo -------
echo.
echo commands: open, south
cmdMenuSel f870 "Open" "South"
if %ERRORLEVEL% == 1 goto hc2
if %ERRORLEVEL% == 2 goto c2mapko0
:komapdooric
echo.
echo That was an invalid command, try again.
pause
goto komapdoor
:hc2
cls
echo Keegan enters the house and closes the door.
pause
echo.
echo Keegan: Alright, now, I'm safe.
pause
echo.
echo German: �berpr�fen Sie die H�user! (Check the houses!)
pause
echo.
echo Keegan: Uhggg, really? Fine. Guess I will have to hide.
pause
goto c2housemap
:c2housemap
cls
echo Checkpoint Code: 61042
echo.
echo -------------------
echo [ H H ] Plant (Left) Stove (Right)
echo [ ]
echo [ -----D----
echo [ S [ ] Stairs (Left)
echo D K [ H ] Toilet
echo -------------------
echo.
echo "H" means you can hide there.
echo.
echo commands: stairs, toilet, plant, stove
cmdMenuSel f870 "Stairs" "Toilet" "Plant" "Stove"
if %ERRORLEVEL% == 1 goto c2trystairs
if %ERRORLEVEL% == 2 goto c2hidetoilet
if %ERRORLEVEL% == 3 goto c2hideplant
if %ERRORLEVEL% == 4 goto c2hidestove
:c2housemapic
echo.
echo That was an invalid command, try again.
pause
goto c2housemap
:c2trystairs
cls
echo Keegan: They would catch me quickly, considering how tall this house is.
pause
goto c2housemap
:c2hidetoilet
cls
echo Keegan goes into the bathroom and hides in the toilet, then he realises that he can't fit in the toilet. A german goes in and laughs at Keegan.
pause
echo.
echo Keegan gets captured.
pause
echo.
echo Want to try again?
echo.
echo commands: yes, no
cmdMenuSel f870 "Yes" "No"
if %ERRORLEVEL% == 1 goto c2housemap
if %ERRORLEVEL% == 2 goto c2deathmessage
:c2deathmessage
cls
echo Goodbye! If you want to come back, use this code at the title screen: 61042
pause
exit
:c2hideplant
cls
echo Keegan hides behind the tall plant.
pause
echo.
echo A german walks in and sees him instantly
pause
echo.
echo Keegan gets captured.
pause
echo.
echo Want to try again?
echo.
echo commands: yes, no
cmdMenuSel f870 "Yes" "No"
if %ERRORLEVEL% == 1 goto c2housemap
if %ERRORLEVEL% == 2 goto c2deathmessage
:c2hidestove
echo Keegan opens the stove door and crawls in.
pause
echo.
echo A german walks in and looks around the whole house.
pause
echo.
echo The german walks out.
pause
echo.
echo Keegan: Few. That was close. I should explore the house more.
pause
cls
echo End of Chapter 2.
pause
cls
echo Chapter 3 Code: 47728
pause
goto Chapter3
:Chapter3
cls
echo Chapter 3: The House
echo.
echo Keegan: Well, now I can explore this house without having to worry about any Nazi's catching me.
pause
echo.
echo Keegan: I'm going to check this house out.
pause
goto c3map
:c3map
cls
echo -------------------
echo [ A A ] Plant (Left) Stove (Right)
echo [ ]
echo [ -----D----
echo [ S [ ] Stairs (Left)
echo D K [ A ] Toilet
echo -------------------
echo.
echo commands: stairs, toilet, plant, stove
cmdMenuSel f870 "Stairs" "Toilet" "Plant" "Stove"
if %ERRORLEVEL% == 1 goto c3uphouse
if %ERRORLEVEL% == 2 goto c3toilet
if %ERRORLEVEL% == 3 goto c3plant
if %ERRORLEVEL% == 4 goto c3stove
:commandinvalidc3
echo.
echo That was an invalid command, try again
pause
goto c3map
:c3toilet
cls
echo Keegan: Well, glad I didn't hide here. I probably did in a different timeline, but, whatever.
pause
goto c3map
:c3plant
cls
echo Keegan: That's one mighty plant. I wonder why it's here.
pause
goto c3map
:c3stove
cls
echo Keegan: I'm supprised that this thing saved me. That guy was too dumb to check it.
pause
goto c3map
:c3uphouse
cls
echo Keegan: Now it would be a good time to go up.
pause
echo.
echo Keegan walks up the stairs.
pause
goto c3uphousemap
:c3uphousemap
cls
echo ---------------------
echo [ ]
echo [ E ]
echo [S K .D
echo ---------------------
echo.
echo There is a door.
echo.
echo commands: east, examine
cmdMenuSel f870 "East" "Examine"
if %ERRORLEVEL% == 1 goto c3uphousemap2
if %ERRORLEVEL% == 2 goto c3uphouseexamine
:c3uphouseexamine
cls
echo Keegan: This room looks destroyed...
pause
goto c3uphousemap
:c3uphousemap2
cls
echo ---------------------
echo [ ]
echo [ E ]
echo [S K D
echo ---------------------
echo.
echo Keegan nears the door.
echo.
echo commands: open, examine
cmdMenuSel f870 "Open" "Examine" "West"
if %ERRORLEVEL% == 1 goto exitc3toc4
if %ERRORLEVEL% == 2 goto c3uphouseexamine2
if %ERRORLEVEL% == 3 goto c3uphousemap
:c3uphouseexamine2
cls
echo Keegan: This room looks destroyed...
pause
goto c3uphousemap2
:exitc3toc4
cls
echo Keegan: Well, lets see whats behind this door.
pause
echo.
echo Keegan opens the door and looks in amazment at a glitching portal.
pause
echo.
echo Keegan: Uhhhhhhh, Kam?
pause
echo.
echo Kameron: *On Earpiece* Yeah, what's wrong?
pause
echo.
echo Keegan: There is a weird looking portal here.
pause
echo.
echo Kameron: You might want to be careful, it could suck you in and bring you to a different time and place. You might want to get away from that thing.
pause
echo.
echo Keegan: Got it.
pause
echo.
echo Keegan rushes to the door, but it's jammed.
pause
echo.
echo Keegan: Shit! It's jammed.
pause
echo.
echo The portal starts glitching even harder.
pause
echo.
echo Keegan: Kameron! I need you to get me out of here.
pause
echo.
echo Kameron: The systems are jammed!
pause
echo.
echo The portal then sucked Keegan in.
pause
cls
echo End of Chapter 3
echo.
echo Before continuing, please save this code somewhere so you can continue where you left off: 09315
pause
:c4start
cls
echo Chapter 4: Time Traveling Portals
echo.
echo Keegan flew out of the portal, along with a table and two chairs.
pause
echo.
echo Keegan: Ouch.
pause
echo.
echo Keegan heared static on his Earpiece. Keegan checked the static. Then, something connected.
pause
echo.
echo Kameron: God dang, it took a minute just to reconnect.
pause
echo.
echo Keegan: Oh, hey bro.
pause
echo.
echo Kameron: Hey, do you mind checking the screen on your glove? I just need to know where you are.
pause
echo.
echo Keegan checked the time on his glove, and it said 12:00 pm, August 13, 3999
pause
echo.
echo Keegan: Well, it looks like I'm in the year 3999
pause
echo.
echo Kameron: The what? Ok, you need to find another portal to get out of there.
pause
echo.
echo Keegan: Alright, I will try.
pause
echo.
echo Keegan enters the water.
pause
:c4startmap
cls
echo Area 1: Cave
echo.
echo -----------------
echo [ ~~~~~~~~~~~: ]
echo [ ~~~~~~~~~~~: ]
echo [ ~~~~~K~~~~~: .L
echo [ ~~~~~~~~~~~---]
echo [ ~~~~~~~~~~~ ]
echo -----------------
echo "~" means that there is water there. "L" means that you leave that area.
echo.
cmdMenuSel f870 "East" "Examine" ""
if %ERRORLEVEL% == 1 goto c4startmap2
if %ERRORLEVEL% == 2 goto c4startmape
if %ERRORLEVEL% == 3 goto c4secret
:c4secret
cls
echo ???: God dang it, I shouldn't have took that quiz, now I'm trapped down here.
pause
echo.
echo ??: Don't worry, I got trapped down here too.
pause
echo.
echo Keegan: Hello???
pause
echo.
echo ??: Did you hear that?
pause
echo.
echo ???: Yeah.
pause
echo.
echo ??: Might want to see who is talking.
pause
echo.
echo ???: First, who are you?
pause
echo.
echo Keegan: (I should get out of here.)
pause
goto c4startmap
:c4startmape
cls
echo Keegan: I should get out of this water.
pause
goto c4startmap
:c4startmap2
cls
echo Area 1: Cave
echo.
echo -----------------
echo [ ~~~~~~~~~~~: ]
echo [ ~~~~~~~~~~~: ]
echo [ ~~~~~.~~~~~:K L
echo [ ~~~~~~~~~~~---]
echo [ ~~~~~~~~~~~ ]
echo -----------------
echo.
cmdMenuSel f870 "West" "Exit Area"
if %ERRORLEVEL% == 1 goto c4startmap
if %ERRORLEVEL% == 2 goto c4cityenter
:c4cityenter
cls
echo Keegan exits the cave to find a big town.
pause
echo.
echo Keegan: Wow.
pause
goto c4citymapvaribles
:c4citymapvaribles
set c4ts=0
set c4h=0
set basekey=0
set ironamount=0
set pocketboyuse=0
goto c4citymap
:c4citymap
cls
echo Area 2: The Town
echo --------- ^ ---------
echo [ Town [ ] ]
echo [ Shop [ ] Hotel ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [ [ ] ]
echo [-------- --------]
echo [ K ]
echo [ ]
cmdMenuSel f870 "Town Shop" "Hotel" "Move Up"
if %ERRORLEVEL% == 1 goto c4townshopentermsg
if %ERRORLEVEL% == 2 goto c4hotelenter
if %ERRORLEVEL% == 3 goto c4citymap2
:c4townshopentermsg
cls
if "%c4ts%" == "1" goto c4townshopentermsg
echo Keegan opens the door to the Town Shop.
pause
echo.
echo Clerk: Sorry Outsider, shop's closed.
pause
echo.
echo Keegan: Sorry sir.
pause
echo.
echo Keegan was about to leave, when the clerk spoke again.
pause
echo.
echo Clerk: Wait, what's your name, Outsider?
pause
echo.
echo Keegan: Keegan, Keegan Miller.
pause
echo.
echo Clerk: Are you a friend or foe?
pause
echo.