-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathWWW_Bauernhof_Games.txt
3153 lines (2854 loc) · 101 KB
/
WWW_Bauernhof_Games.txt
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
Game (WWW Bauernhof.gme)
Games (0x1703D)
--------------------------
Count = 12
Game Header ( 0, 0x17071)
--------------------------
Type: 1
0x17071 B00 000018
01 00 0B 00 05 00 00 00 04 00 81 05 00 00 6F 00
DE 00
Playlistpointer (0x17697, 1)
Playlist (0x1769D, 5) = [
0430 "NOISE: Tuedelue",
0431 "Jetzt spielen wir ein Geraeuschespiel!",
0432 "Hoer genau zu!",
0433 "Wenn du weist woher das Geraeusch kommt, beruehre es im Bild!",
0434 "Achtung es geht los!", ]
Playlistpointer (0x176A9, 0)
Playlistpointer (0x176AB, 0)
Playlistpointer (0x176AD, 1)
Playlist (0x176B3, 2) = [
0435 "Silence",
0436 "Hier kommt das naechste Geraeusch!", ]
Playlistpointer (0x176B9, 1)
Playlist (0x176BF, 2) = [
0435 "Silence",
0437 "Hier kommt das letzte Geraeusch!", ]
Subgames: [0x170FF,0x17183,0x17205,0x17287,0x17309,0x1738B,0x1740D,0x1748F,0x17511,0x17593,0x17615,]
0x170C3 B00 000020
03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
Playlistpointer (0x176C5, 1)
Playlist (0x176CB, 3) = [
0435 "Silence",
0438 "Super, du hast gute Ohren.",
0439 "Schau dich mal auf der naechsten Seite um. Was endeckst du dort alles?", ]
Playlistpointer (0x176D3, 1)
Playlist (0x176D9, 3) = [
0435 "Silence",
0440 "Das ist ganz schoen schwer, oder?",
0441 "Hoer dir bei ENTDECKEN doch in Ruhe alles noch einmal genau an.", ]
Playlistpointer (0x176E1, 0)
Playlistpointer (0x176E3, 0)
Playlistpointer (0x176E5, 0)
Playlistpointer (0x176E7, 0)
Playlistpointer (0x176E9, 0)
Playlistpointer (0x176EB, 0)
Playlistpointer (0x176ED, 0)
Playlistpointer (0x176EF, 0)
SubGame( 0, 0x170FF)
--------------------------
0x170FF B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 2) = [ 1422, 1439, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x176F1, 1)
Playlist (0x176F7, 2) = [
0435 "Silence",
0442 "NOISE: Traktor", ]
Playlistpointer (0x176FD, 1)
Playlist (0x17703, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17707, 0)
Playlistpointer (0x17709, 1)
Playlist (0x1770F, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x17713, 0)
Playlistpointer (0x17715, 1)
Playlist (0x1771B, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1771F, 1)
Playlist (0x17725, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17729, 1)
Playlist (0x1772F, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17733, 1)
Playlist (0x17739, 1) = [
0443 "NOISE: Pling", ]
SubGame( 1, 0x17183)
--------------------------
0x17183 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1419, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x1773D, 1)
Playlist (0x17743, 2) = [
0435 "Silence",
0446 "NOISE: Kuh (Muhen)", ]
Playlistpointer (0x17749, 1)
Playlist (0x1774F, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17753, 0)
Playlistpointer (0x17755, 1)
Playlist (0x1775B, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x1775F, 0)
Playlistpointer (0x17761, 1)
Playlist (0x17767, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1776B, 1)
Playlist (0x17771, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17775, 1)
Playlist (0x1777B, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1777F, 1)
Playlist (0x17785, 1) = [
0443 "NOISE: Pling", ]
SubGame( 2, 0x17205)
--------------------------
0x17205 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1420, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x17789, 1)
Playlist (0x1778F, 2) = [
0435 "Silence",
0447 "NOISE: Schwein (Grunzen, Quiecken)", ]
Playlistpointer (0x17795, 1)
Playlist (0x1779B, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1779F, 0)
Playlistpointer (0x177A1, 1)
Playlist (0x177A7, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x177AB, 0)
Playlistpointer (0x177AD, 1)
Playlist (0x177B3, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x177B7, 1)
Playlist (0x177BD, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x177C1, 1)
Playlist (0x177C7, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x177CB, 1)
Playlist (0x177D1, 1) = [
0443 "NOISE: Pling", ]
SubGame( 3, 0x17287)
--------------------------
0x17287 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1420, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x177D5, 1)
Playlist (0x177DB, 2) = [
0435 "Silence",
0448 "NOISE: Schaf (Maehen)", ]
Playlistpointer (0x177E1, 1)
Playlist (0x177E7, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x177EB, 0)
Playlistpointer (0x177ED, 1)
Playlist (0x177F3, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x177F7, 0)
Playlistpointer (0x177F9, 1)
Playlist (0x177FF, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17803, 1)
Playlist (0x17809, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1780D, 1)
Playlist (0x17813, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17817, 1)
Playlist (0x1781D, 1) = [
0443 "NOISE: Pling", ]
SubGame( 4, 0x17309)
--------------------------
0x17309 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1431, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x17821, 1)
Playlist (0x17827, 2) = [
0435 "Silence",
0449 "NOISE: Hahn (Kraehen)", ]
Playlistpointer (0x1782D, 1)
Playlist (0x17833, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17837, 0)
Playlistpointer (0x17839, 1)
Playlist (0x1783F, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x17843, 0)
Playlistpointer (0x17845, 1)
Playlist (0x1784B, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1784F, 1)
Playlist (0x17855, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17859, 1)
Playlist (0x1785F, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17863, 1)
Playlist (0x17869, 1) = [
0443 "NOISE: Pling", ]
SubGame( 5, 0x1738B)
--------------------------
0x1738B B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1428, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x1786D, 1)
Playlist (0x17873, 2) = [
0435 "Silence",
0450 "NOISE: Schnarchen", ]
Playlistpointer (0x17879, 1)
Playlist (0x1787F, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17883, 0)
Playlistpointer (0x17885, 1)
Playlist (0x1788B, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x1788F, 0)
Playlistpointer (0x17891, 1)
Playlist (0x17897, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1789B, 1)
Playlist (0x178A1, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x178A5, 1)
Playlist (0x178AB, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x178AF, 1)
Playlist (0x178B5, 1) = [
0443 "NOISE: Pling", ]
SubGame( 6, 0x1740D)
--------------------------
0x1740D B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1424, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x178B9, 1)
Playlist (0x178BF, 2) = [
0435 "Silence",
0451 "NOISE: Morsen", ]
Playlistpointer (0x178C5, 1)
Playlist (0x178CB, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x178CF, 0)
Playlistpointer (0x178D1, 1)
Playlist (0x178D7, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x178DB, 0)
Playlistpointer (0x178DD, 1)
Playlist (0x178E3, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x178E7, 1)
Playlist (0x178ED, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x178F1, 1)
Playlist (0x178F7, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x178FB, 1)
Playlist (0x17901, 1) = [
0443 "NOISE: Pling", ]
SubGame( 7, 0x1748F)
--------------------------
0x1748F B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1429, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x17905, 1)
Playlist (0x1790B, 2) = [
0435 "Silence",
0452 "NOISE: Katze (Miauen)", ]
Playlistpointer (0x17911, 1)
Playlist (0x17917, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1791B, 0)
Playlistpointer (0x1791D, 1)
Playlist (0x17923, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x17927, 0)
Playlistpointer (0x17929, 1)
Playlist (0x1792F, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17933, 1)
Playlist (0x17939, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1793D, 1)
Playlist (0x17943, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17947, 1)
Playlist (0x1794D, 1) = [
0443 "NOISE: Pling", ]
SubGame( 8, 0x17511)
--------------------------
0x17511 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1417, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x17951, 1)
Playlist (0x17957, 2) = [
0435 "Silence",
0453 "NOISE: Fliessen", ]
Playlistpointer (0x1795D, 1)
Playlist (0x17963, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17967, 0)
Playlistpointer (0x17969, 1)
Playlist (0x1796F, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x17973, 0)
Playlistpointer (0x17975, 1)
Playlist (0x1797B, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x1797F, 1)
Playlist (0x17985, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17989, 1)
Playlist (0x1798F, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17993, 1)
Playlist (0x17999, 1) = [
0443 "NOISE: Pling", ]
SubGame( 9, 0x17593)
--------------------------
0x17593 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1436, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x1799D, 1)
Playlist (0x179A3, 2) = [
0435 "Silence",
0454 "NOISE: Kuckkuck", ]
Playlistpointer (0x179A9, 1)
Playlist (0x179AF, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x179B3, 0)
Playlistpointer (0x179B5, 1)
Playlist (0x179BB, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x179BF, 0)
Playlistpointer (0x179C1, 1)
Playlist (0x179C7, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x179CB, 1)
Playlist (0x179D1, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x179D5, 1)
Playlist (0x179DB, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x179DF, 1)
Playlist (0x179E5, 1) = [
0443 "NOISE: Pling", ]
SubGame(10, 0x17615)
--------------------------
0x17615 B00 000020
00 00 00 00 00 00 01 00 01 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1413, ]
OID List (1, 0) = [ ]
OID List (2, 33) = [ 1401, 1402, 1403, 1404, 1405, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1438, 1439, ]
Playlistpointer (0x179E9, 1)
Playlist (0x179EF, 2) = [
0435 "Silence",
0455 "NOISE: Storch (Klappern)", ]
Playlistpointer (0x179F5, 1)
Playlist (0x179FB, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x179FF, 0)
Playlistpointer (0x17A01, 1)
Playlist (0x17A07, 1) = [
0444 "Bitte blaettere zurueck auf die erste Seite!", ]
Playlistpointer (0x17A0B, 0)
Playlistpointer (0x17A0D, 1)
Playlist (0x17A13, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17A17, 1)
Playlist (0x17A1D, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x17A21, 1)
Playlist (0x17A27, 1) = [
0445 "NOISE: Moep", ]
Playlistpointer (0x17A2B, 1)
Playlist (0x17A31, 1) = [
0443 "NOISE: Pling", ]
Game Header ( 1, 0x17A35)
--------------------------
Type: 2
0x17A35 B00 000018
02 00 05 00 05 00 00 00 00 00 A9 05 00 00 6F 00
DE 00
Playlistpointer (0x17D17, 1)
Playlist (0x17D1D, 3) = [
0430 "NOISE: Tuedelue",
0456 ""Wir spielen ""Ich sehe was, was du nicht siehts"". Versuche herauszufinden welches Objekt gesucht ist. Nach jedem falschen Treffer bekommst du einen weiteren Hinweis."",
0457 "Es geht los.", ]
Playlistpointer (0x17D25, 0)
Playlistpointer (0x17D27, 1)
Playlist (0x17D2D, 3) = [
0435 "Silence",
0458 "Willst du noch einmal spielen?",
0459 "Dann gehe auf SPIELEN.", ]
Playlistpointer (0x17D35, 0)
Playlistpointer (0x17D37, 0)
Subgames: [0x17AAB,0x17B27,0x17BA3,0x17C1F,0x17C9B,]
0x17A6F B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
Playlistpointer (0x17D39, 0)
Playlistpointer (0x17D3B, 0)
Playlistpointer (0x17D3D, 0)
Playlistpointer (0x17D3F, 0)
Playlistpointer (0x17D41, 0)
Playlistpointer (0x17D43, 0)
Playlistpointer (0x17D45, 0)
Playlistpointer (0x17D47, 0)
Playlistpointer (0x17D49, 0)
Playlistpointer (0x17D4B, 0)
SubGame( 0, 0x17AAB)
--------------------------
0x17AAB B00 000020
00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1471, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1441, 1442, 1443, 1444, 1445, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1446, ]
Playlistpointer (0x17D4D, 1)
Playlist (0x17D53, 3) = [
0435 "Silence",
0460 "Ich sehe was, was du nichts siehst ?",
0461 "und das ist rosa.", ]
Playlistpointer (0x17D5B, 1)
Playlist (0x17D61, 2) = [
0443 "NOISE: Pling",
0462 "Es ist das Euter.", ]
Playlistpointer (0x17D67, 0)
Playlistpointer (0x17D69, 1)
Playlist (0x17D6F, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0464 "Woher kommt die Milch?", ]
Playlistpointer (0x17D75, 0)
Playlistpointer (0x17D77, 3)
Playlist (0x17D85, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0465 "Es ist weich.", ]
Playlist (0x17D8D, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0466 "Es gehoert einem Tier.", ]
Playlist (0x17D95, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0467 "Es kommt Milch heraus.", ]
Playlistpointer (0x17D9D, 1)
Playlist (0x17DA3, 2) = [
0443 "NOISE: Pling",
0462 "Es ist das Euter.", ]
Playlistpointer (0x17DA9, 1)
Playlist (0x17DAF, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0462 "Es ist das Euter.", ]
Playlistpointer (0x17DB7, 1)
Playlist (0x17DBD, 1) = [
0443 "NOISE: Pling", ]
SubGame( 1, 0x17B27)
--------------------------
0x17B27 B00 000020
00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1468, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1441, 1442, 1443, 1444, 1445, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1446, ]
Playlistpointer (0x17DC1, 1)
Playlist (0x17DC7, 3) = [
0435 "Silence",
0460 "Ich sehe was, was du nichts siehst ?",
0468 "und das ist blau.", ]
Playlistpointer (0x17DCF, 1)
Playlist (0x17DD5, 2) = [
0443 "NOISE: Pling",
0469 "Das ist Moritzs T-Shirt.", ]
Playlistpointer (0x17DDB, 0)
Playlistpointer (0x17DDD, 1)
Playlist (0x17DE3, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0464 "Woher kommt die Milch?", ]
Playlistpointer (0x17DE9, 0)
Playlistpointer (0x17DEB, 3)
Playlist (0x17DF9, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0470 "Das ist weich.", ]
Playlist (0x17E01, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0471 "Das hat vier Loecher.", ]
Playlist (0x17E09, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0472 "Das gehoert Moritz.", ]
Playlistpointer (0x17E11, 1)
Playlist (0x17E17, 2) = [
0443 "NOISE: Pling",
0469 "Das ist Moritzs T-Shirt.", ]
Playlistpointer (0x17E1D, 1)
Playlist (0x17E23, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0469 "Das ist Moritzs T-Shirt.", ]
Playlistpointer (0x17E2B, 1)
Playlist (0x17E31, 1) = [
0443 "NOISE: Pling", ]
SubGame( 2, 0x17BA3)
--------------------------
0x17BA3 B00 000020
00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1469, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1441, 1442, 1443, 1444, 1445, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1446, ]
Playlistpointer (0x17E35, 1)
Playlist (0x17E3B, 3) = [
0435 "Silence",
0460 "Ich sehe was, was du nichts siehst ?",
0473 "und das ist gruen.", ]
Playlistpointer (0x17E43, 1)
Playlist (0x17E49, 2) = [
0443 "NOISE: Pling",
0474 "Das sind die Gummistiefel von Maries Papa.", ]
Playlistpointer (0x17E4F, 0)
Playlistpointer (0x17E51, 1)
Playlist (0x17E57, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0464 "Woher kommt die Milch?", ]
Playlistpointer (0x17E5D, 0)
Playlistpointer (0x17E5F, 3)
Playlist (0x17E6D, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0475 "Das ist wasserdicht.", ]
Playlist (0x17E75, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0476 "Das ist aus Gummi.", ]
Playlist (0x17E7D, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0477 "Das gehoert Maries Papa.", ]
Playlistpointer (0x17E85, 1)
Playlist (0x17E8B, 2) = [
0443 "NOISE: Pling",
0474 "Das sind die Gummistiefel von Maries Papa.", ]
Playlistpointer (0x17E91, 1)
Playlist (0x17E97, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0474 "Das sind die Gummistiefel von Maries Papa.", ]
Playlistpointer (0x17E9F, 1)
Playlist (0x17EA5, 1) = [
0443 "NOISE: Pling", ]
SubGame( 3, 0x17C1F)
--------------------------
0x17C1F B00 000020
00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1470, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1441, 1442, 1443, 1444, 1445, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1446, ]
Playlistpointer (0x17EA9, 1)
Playlist (0x17EAF, 3) = [
0435 "Silence",
0460 "Ich sehe was, was du nichts siehst ?",
0478 "und das ist braun.", ]
Playlistpointer (0x17EB7, 1)
Playlist (0x17EBD, 2) = [
0443 "NOISE: Pling",
0479 "Das ist die Fellbuerste.", ]
Playlistpointer (0x17EC3, 0)
Playlistpointer (0x17EC5, 1)
Playlist (0x17ECB, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0464 "Woher kommt die Milch?", ]
Playlistpointer (0x17ED1, 0)
Playlistpointer (0x17ED3, 3)
Playlist (0x17EE1, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0480 "Das wird fuer die Kuehe benutzt.", ]
Playlist (0x17EE9, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0481 "Das ist kratzig.", ]
Playlist (0x17EF1, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0482 "Das benutzen die Bauern und Karl.", ]
Playlistpointer (0x17EF9, 1)
Playlist (0x17EFF, 2) = [
0443 "NOISE: Pling",
0479 "Das ist die Fellbuerste.", ]
Playlistpointer (0x17F05, 1)
Playlist (0x17F0B, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0479 "Das ist die Fellbuerste.", ]
Playlistpointer (0x17F13, 1)
Playlist (0x17F19, 1) = [
0443 "NOISE: Pling", ]
SubGame( 4, 0x17C9B)
--------------------------
0x17C9B B00 000020
00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 1) = [ 1464, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1441, 1442, 1443, 1444, 1445, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1446, ]
Playlistpointer (0x17F1D, 1)
Playlist (0x17F23, 3) = [
0435 "Silence",
0460 "Ich sehe was, was du nichts siehst ?",
0483 "und das ist silber.", ]
Playlistpointer (0x17F2B, 1)
Playlist (0x17F31, 2) = [
0443 "NOISE: Pling",
0484 "Das ist der Milchtank.", ]
Playlistpointer (0x17F37, 0)
Playlistpointer (0x17F39, 1)
Playlist (0x17F3F, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0464 "Woher kommt die Milch?", ]
Playlistpointer (0x17F45, 0)
Playlistpointer (0x17F47, 3)
Playlist (0x17F55, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0485 "Das ist gross.", ]
Playlist (0x17F5D, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0486 "Das ist aus Metall.", ]
Playlist (0x17F65, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0487 "Dort wird die Milch gesammelt.", ]
Playlistpointer (0x17F6D, 1)
Playlist (0x17F73, 2) = [
0443 "NOISE: Pling",
0484 "Das ist der Milchtank.", ]
Playlistpointer (0x17F79, 1)
Playlist (0x17F7F, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0484 "Das ist der Milchtank.", ]
Playlistpointer (0x17F87, 1)
Playlist (0x17F8D, 1) = [
0443 "NOISE: Pling", ]
Game Header ( 2, 0x17F91)
--------------------------
Type: 3
0x17F91 B00 000018
03 00 03 00 03 00 01 00 03 00 D1 05 00 00 6F 00
DE 00
Playlistpointer (0x18185, 1)
Playlist (0x1818B, 2) = [
0430 "NOISE: Tuedelue",
0488 "Die Tierkinder spielen Verstecken.", ]
Playlistpointer (0x18191, 0)
Playlistpointer (0x18193, 1)
Playlist (0x18199, 3) = [
0489 "Klasse!",
0490 "Du hast alle Tierkinder gefunden.",
0491 "Hoer doch mal was es auf der naechsten Seite alles gibt.", ]
Playlistpointer (0x181A1, 1)
Playlist (0x181A7, 1) = [
0492 "Und jetzt", ]
Playlistpointer (0x181AB, 0)
Subgames: [0x17FFF,0x18081,0x18103,]
0x17FC3 B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
Playlistpointer (0x181AD, 0)
Playlistpointer (0x181AF, 0)
Playlistpointer (0x181B1, 0)
Playlistpointer (0x181B3, 0)
Playlistpointer (0x181B5, 0)
Playlistpointer (0x181B7, 0)
Playlistpointer (0x181B9, 0)
Playlistpointer (0x181BB, 0)
Playlistpointer (0x181BD, 0)
Playlistpointer (0x181BF, 0)
SubGame( 0, 0x17FFF)
--------------------------
0x17FFF B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 4) = [ 1499, 1500, 1501, 1502, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1481, 1482, 1483, 1484, 1485, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, ]
Playlistpointer (0x181C1, 1)
Playlist (0x181C7, 4) = [
0435 "Silence",
0493 "suche die vier Ferkel",
0494 "Tippe sie nacheinander an!",
0495 "Findest du sie?", ]
Playlistpointer (0x181D1, 1)
Playlist (0x181D7, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x181DB, 0)
Playlistpointer (0x181DD, 1)
Playlist (0x181E3, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0496 "Was machen die Tierkinder?", ]
Playlistpointer (0x181E9, 1)
Playlist (0x181EF, 1) = [
0497 "Das hattest du schon gefunden.", ]
Playlistpointer (0x181F3, 1)
Playlist (0x181F9, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0498 "Das war nicht richtig. Probier es noch einmal.", ]
Playlistpointer (0x18201, 1)
Playlist (0x18207, 3) = [
0443 "NOISE: Pling",
0499 "Super, du hast alle vier gefunden.",
0435 "Silence", ]
Playlistpointer (0x1820F, 0)
Playlistpointer (0x18211, 1)
Playlist (0x18217, 1) = [
0443 "NOISE: Pling", ]
SubGame( 1, 0x18081)
--------------------------
0x18081 B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 4) = [ 1493, 1494, 1495, 1496, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1481, 1482, 1483, 1484, 1485, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, ]
Playlistpointer (0x1821B, 1)
Playlist (0x18221, 3) = [
0435 "Silence",
0500 "Wo haben sich die vier Laemmer versteckt?",
0494 "Tippe sie nacheinander an!", ]
Playlistpointer (0x18229, 1)
Playlist (0x1822F, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x18233, 0)
Playlistpointer (0x18235, 1)
Playlist (0x1823B, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0496 "Was machen die Tierkinder?", ]
Playlistpointer (0x18241, 1)
Playlist (0x18247, 1) = [
0497 "Das hattest du schon gefunden.", ]
Playlistpointer (0x1824B, 1)
Playlist (0x18251, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0498 "Das war nicht richtig. Probier es noch einmal.", ]
Playlistpointer (0x18259, 1)
Playlist (0x1825F, 3) = [
0443 "NOISE: Pling",
0499 "Super, du hast alle vier gefunden.",
0435 "Silence", ]
Playlistpointer (0x18267, 0)
Playlistpointer (0x18269, 1)
Playlist (0x1826F, 1) = [
0443 "NOISE: Pling", ]
SubGame( 2, 0x18103)
--------------------------
0x18103 B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 4) = [ 1504, 1505, 1506, 1510, ]
OID List (1, 0) = [ ]
OID List (2, 30) = [ 1481, 1482, 1483, 1484, 1485, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, ]
Playlistpointer (0x18273, 1)
Playlist (0x18279, 4) = [
0435 "Silence",
0501 "Wo sind bloss die vier Zicklein?",
0494 "Tippe sie nacheinander an!",
0495 "Findest du sie?", ]
Playlistpointer (0x18283, 1)
Playlist (0x18289, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1828D, 0)
Playlistpointer (0x1828F, 1)
Playlist (0x18295, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0496 "Was machen die Tierkinder?", ]
Playlistpointer (0x1829B, 1)
Playlist (0x182A1, 1) = [
0497 "Das hattest du schon gefunden.", ]
Playlistpointer (0x182A5, 1)
Playlist (0x182AB, 3) = [
0445 "NOISE: Moep",
0435 "Silence",
0498 "Das war nicht richtig. Probier es noch einmal.", ]
Playlistpointer (0x182B3, 1)
Playlist (0x182B9, 3) = [
0443 "NOISE: Pling",
0499 "Super, du hast alle vier gefunden.",
0435 "Silence", ]
Playlistpointer (0x182C1, 0)
Playlistpointer (0x182C3, 1)
Playlist (0x182C9, 1) = [
0443 "NOISE: Pling", ]
Game Header ( 3, 0x182CD)
--------------------------
Type: 4
0x182CD B00 000018
04 00 09 00 06 00 00 00 00 00 F9 05 00 00 6F 00
DE 00
Playlistpointer (0x1875F, 1)
Playlist (0x18765, 5) = [
0430 "NOISE: Tuedelue",
0502 "Du hoerst jetzt nacheinander verschiedene Woerter. Tippe die dazugehoerigen Bilder in der Reihenfolge an in der du die Woerter hoerst.",
0435 "Silence",
0503 "Hier kommt das erste Wort.",
0435 "Silence", ]
Playlistpointer (0x18771, 6)
Playlist (0x1878B, 2) = [
0504 "Jetzt hoerst du zwei",
0505 "Woerter hintereinander.", ]
Playlist (0x18791, 3) = [
0506 "Jetzt hoerst du drei",
0505 "Woerter hintereinander.",
0435 "Silence", ]
Playlist (0x18799, 3) = [
0507 "Jetzt hoerst du vier",
0505 "Woerter hintereinander.",
0435 "Silence", ]
Playlist (0x187A1, 3) = [
0508 "Jetzt hoerst du fuenf",
0505 "Woerter hintereinander.",
0435 "Silence", ]
Playlist (0x187A9, 3) = [
0509 "Jetzt hoerst du sechs",
0505 "Woerter hintereinander.",
0435 "Silence", ]
Playlist (0x187B1, 2) = [
0510 "Super gemacht.",
0511 "Was gibt es auf der naechsten Seite alles zu entdecken. Probier es aus!", ]
Playlistpointer (0x187B7, 0)
Playlistpointer (0x187B9, 0)
Playlistpointer (0x187BB, 0)
Subgames: [0x18353,0x183CF,0x18441,0x184B3,0x18525,0x18597,0x18609,0x1867B,0x186ED,]
0x18317 B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
Playlistpointer (0x187BD, 0)
Playlistpointer (0x187BF, 0)
Playlistpointer (0x187C1, 0)
Playlistpointer (0x187C3, 0)
Playlistpointer (0x187C5, 0)
Playlistpointer (0x187C7, 0)
Playlistpointer (0x187C9, 0)
Playlistpointer (0x187CB, 0)
Playlistpointer (0x187CD, 0)
Playlistpointer (0x187CF, 0)
SubGame( 0, 0x18353)
--------------------------
0x18353 B00 000020
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
OID List (0, 6) = [ 1532, 1539, 1540, 1541, 1542, 1543, ]
OID List (1, 0) = [ ]
OID List (2, 25) = [ 1521, 1522, 1523, 1524, 1525, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, ]
Playlistpointer (0x187D1, 1)
Playlist (0x187D7, 1) = [
0512 "Henne", ]
Playlistpointer (0x187DB, 1)
Playlist (0x187E1, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x187E5, 0)
Playlistpointer (0x187E7, 1)
Playlist (0x187ED, 2) = [
0463 "Bitte blaettere zurueck auf die Seite ?",
0513 "Wer gackert denn da?", ]
Playlistpointer (0x187F3, 0)
Playlistpointer (0x187F5, 1)
Playlist (0x187FB, 3) = [
0445 "NOISE: Moep",
0514 "Hoer noch einmal genau hin.",
0435 "Silence", ]
Playlistpointer (0x18803, 1)
Playlist (0x18809, 1) = [
0443 "NOISE: Pling", ]
Playlistpointer (0x1880D, 0)
Playlistpointer (0x1880F, 1)
Playlist (0x18815, 1) = [
0443 "NOISE: Pling", ]