-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmaps.json
More file actions
1241 lines (1241 loc) · 74.5 KB
/
Copy pathmaps.json
File metadata and controls
1241 lines (1241 loc) · 74.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
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
[
{
"title": "CityCraft",
"version": "0.5.0",
"short_description": "Big city map for Minecraft PE 0.5.0+",
"full_description": "Big city map for Minecraft PE 0.5.0+",
"thumbnail": "data/0.5.0/CityCraft/thumb.jpg",
"file": "data/0.5.0/CityCraft/CityCraft.zip",
"date": "2025-12-11 19:25",
"type": "maps",
"original_link": "https://4pda.to/forum/index.php?showtopic=626139&st=100",
"author": {
"name": "eqozqq",
"avatar": "https://avatars.githubusercontent.com/u/112166693?v=4"
},
"screenshots": [
"data/0.5.0/CityCraft/screen_1.jpg",
"data/0.5.0/CityCraft/screen_2.jpg"
]
},
{
"title": "calculator 1.0",
"version": "0.8.1",
"short_description": "Рабочий калькулятор",
"thumbnail": "data/0.8.1/calculator 1.0/thumb_1765532791108.jpg",
"file": "data/0.8.1/calculator 1.0/calculator 1.0.zip",
"date": "2025-12-12 11:46",
"type": "maps",
"author": {
"name": "preaton1337",
"avatar": "https://avatars.githubusercontent.com/u/105851196?v=4"
}
},
{
"title": "Let's play by preaton",
"version": "0.8.1",
"short_description": "Survival map from 2023 by preaton",
"thumbnail": "data/0.8.1/Let's play by preaton/thumb_1765534621614.jpg",
"file": "data/0.8.1/Let's play by preaton/Let's play by preaton.zip",
"date": "2025-12-12 12:18",
"type": "maps",
"author": {
"name": "preaton1337",
"avatar": "https://avatars.githubusercontent.com/u/105851196?v=4"
},
"screenshots": [
"data/0.8.1/Let's play by preaton/screen_1_1765534651023.jpg",
"data/0.8.1/Let's play by preaton/screen_2_1765534663783.jpg",
"data/0.8.1/Let's play by preaton/screen_3_1765534679937.jpg"
]
},
{
"title": "Skyblock 0.8.1",
"version": "0.8.1",
"short_description": "Skyblock in minecraft pe alpha 0.8.1 !",
"full_description": "How to add skyblock map in minecraft pe\n\n1. Extract the ZIP file and copy the Skyblock file.\n\n2. Open your file manager and scroll until you find the \"games\" folder, then open it.\n\n3. Open the \"com.mojang\" folder.\n\n4. Find the \"minecraftWorlds\" folder and paste the Skyblock folder inside it.\n\n5. Done — your map should now appear in the game.",
"thumbnail": "data/0.8.1/Skyblock 0.8.1/thumb_1771762928066.jpg",
"file": "data/0.8.1/Skyblock 0.8.1/Skyblock 0.8.1.zip",
"date": "2026-02-22 15:22",
"type": "maps",
"alt_link": "https://www.mediafire.com/file/jj8db520kpgnf7u/Skyblock.zip/file",
"author": {
"name": "IamRealCaster",
"avatar": "https://avatars.githubusercontent.com/u/89154310?v=4"
}
},
{
"title": "my old city",
"version": "0.8.1",
"short_description": "this map was made by me in 2025",
"full_description": "there will be updates soon",
"thumbnail": "data/0.8.1/my old city/thumb_1781760221413.jpg",
"file": "data/0.8.1/my old city/my old city.zip",
"date": "2026-06-18 11:23",
"type": "maps",
"alt_link": "https://drive.google.com/file/d/1IOqUQAR4MZnHd6XQfDaIZ-LDO6JII9Nz/view?usp=drive_link",
"author": {
"name": "r0blox-1",
"avatar": "https://avatars.githubusercontent.com/u/294706971?v=4"
}
},
{
"title": "Super Mario 64",
"version": "0.8.1",
"short_description": "Minecraft map ",
"full_description": "This is a recreation of the game Super Mario 64. Not everything from the game is on this map but there is still a massive amount of detail. Any Mario fan should definitely have a look at this map.",
"thumbnail": "data/0.8.1/Super Mario 64/thumb_1781843230578.jpg",
"file": "data/0.8.1/Super Mario 64/Super Mario 64.zip",
"date": "2026-06-19 10:27",
"type": "maps",
"alt_link": "http://www.nostalgiaforum.rf.gd/index.php?threads/557/",
"author": {
"name": "r0blox-1",
"avatar": "https://avatars.githubusercontent.com/u/294706971?v=4"
},
"screenshots": [
"data/0.8.1/Super Mario 64/screen_1_1781843235564.jpg",
"data/0.8.1/Super Mario 64/screen_2_1781843240792.jpg"
]
},
{
"title": "Village",
"version": "0.8.1, 0.7.0, 0.6.0, 0.5.0",
"short_description": "Map with a village",
"full_description": "Map with a village",
"thumbnail": "data/0.8.1/Village/thumb_1781787071048.jpg",
"file": "data/0.8.1/Village/Village.zip",
"date": "2026-06-18 15:51",
"type": "maps",
"alt_link": "http://www.nostalgiaforum.rf.gd/index.php?attachments/1328/",
"license": "http://www.nostalgiaforum.rf.gd/index.php?threads/504/",
"author": {
"name": "eqozqq",
"avatar": "https://avatars.githubusercontent.com/u/112166693?v=4"
},
"screenshots": [
"data/0.8.1/Village/screen_1_1781787073756.jpg"
]
},
{
"title": "GTA SA",
"version": "0.8.1",
"short_description": "On this map you will find yourself in the city of Los Santos from the same game GTA.",
"full_description": "On this map you will find yourself in the city of Los Santos from the same game GTA. On this map you can find almost all the houses of all the main characters of the game GTA. In this city will be home, street and bridge. Everything will be very similar to the original city of Los Santos. I hope all fans of the game GTA SA this map is very pleasant.",
"date": "2026-06-18 14:44",
"type": "maps",
"author": {
"name": "eqozqq",
"avatar": "https://avatars.githubusercontent.com/u/112166693?v=4"
},
"thumbnail": "data/0.8.1/GTA SA/thumb_1781793866475.jpg",
"file": "data/0.8.1/GTA SA/GTA SA.zip",
"screenshots": [
"data/0.8.1/GTA SA/screen_1_1781793867731.jpg",
"data/0.8.1/GTA SA/screen_2_1781793868794.jpg",
"data/0.8.1/GTA SA/screen_3_1781793869906.jpg"
],
"alt_link": "http://www.nostalgiaforum.rf.gd/index.php?attachments/276/",
"original_link": "https://for-minecraft.com/maps-for-minecraft-pocket-edition/371-gta-sa-map-for-minecraft-pe-081.html"
},
{
"title": "Aether World",
"version": "0.8.1",
"short_description": "Aether world for MCPE 0.8.1",
"full_description": "",
"date": "2026-06-18 14:48",
"type": "maps",
"author": {
"name": "eqozqq",
"avatar": "https://avatars.githubusercontent.com/u/112166693?v=4"
},
"thumbnail": "data/0.8.1/Aether World/thumb_1781794128835.jpg",
"file": "data/0.8.1/Aether World/Aether World.zip",
"screenshots": [
"data/0.8.1/Aether World/screen_1_1781794130240.jpg",
"data/0.8.1/Aether World/screen_2_1781794131500.jpg",
"data/0.8.1/Aether World/screen_3_1781794132843.jpg"
],
"alt_link": "https://www.planetminecraft.com/project/aether-world-mcpe-081/download/worldmap/",
"original_link": "https://www.planetminecraft.com/project/aether-world-mcpe-081/"
},
{
"title": "VanillaPE (server) World 1",
"version": "0.8.1",
"short_description": "Map of the first world of old MCPE 0.8.1 server VanillaPE that was made by Sliver4649",
"full_description": "",
"date": "2026-06-23 10:28",
"type": "maps",
"author": {
"name": "Sliver4649",
"avatar": "https://avatars.githubusercontent.com/u/81817514?v=4"
},
"thumbnail": "data/0.8.1/VanillaPE (server) World 1/thumb_1782210484121.jpg",
"file": "data/0.8.1/VanillaPE (server) World 1/VanillaPE (server) World 1.zip",
"screenshots": [
"data/0.8.1/VanillaPE (server) World 1/screen_1_1782210485921.jpg",
"data/0.8.1/VanillaPE (server) World 1/screen_2_1782210487600.jpg",
"data/0.8.1/VanillaPE (server) World 1/screen_3_1782210489309.jpg",
"data/0.8.1/VanillaPE (server) World 1/screen_4_1782210490838.jpg"
]
},
{
"title": "Archery Adventure",
"version": "0.8.1",
"short_description": "Your objective is to complete the map but your only weapon is bow. This map tests your skills with bow and also your parkour skills.",
"full_description": "(Map Creator: Valtersss123)\n\nThis map includes:\n\n*Target practice\n\n*Parkour\n\n*Rollercoasters\n\n*Lots of unique levels\n\n*Redstone alternatives\n\n*Zombie pigmen fights",
"date": "2026-06-23 16:28",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20141027041750/http://mcpeuniverse.com/maps/archery-adventure/",
"file": "data/0.8.1/Archery Adventure/Archery Adventure.zip",
"thumbnail": "data/0.8.1/Archery Adventure/thumb_1782232097499.jpg",
"screenshots": [
"data/0.8.1/Archery Adventure/screen_1_1782232100050.jpg",
"data/0.8.1/Archery Adventure/screen_2_1782232103020.jpg"
],
"updated_date": "2026-06-28 22:39"
},
{
"title": "Archery skills map",
"version": "0.8.1",
"short_description": "This map has 11 levels in it. Some are hard and some are easy. THIS MAP WILL PUT THRILL INTO EVERYONE WHO PLAYS.",
"full_description": "(Map Creator: samitheguy)\n",
"date": "2026-06-23 16:37",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140701162114/http://mcpeuniverse.com/maps/mcpe-achery-skills-map-with-12-hard-and-easy-levels/",
"file": "data/0.8.1/Archery skills map/Archery skills map.zip",
"thumbnail": "data/0.8.1/Archery skills map/thumb_1782232619033.jpg",
"updated_date": "2026-06-28 22:31"
},
{
"title": "Camp Puzzlemaca",
"version": "0.8.1",
"short_description": "Welcome everyone, East here, and welcome to my adventure/puzzle/parkour map! The map in total took me 4 months. It’s fun and difficult and I hope you enjoy! ",
"full_description": "————————-Storyline————————-\n\n“Have fun loser!” your sister screamed out the window of the car, while sticking her tongue out. That’s the only happy thing you remembered from the whole week. Since you have been at this camp called Camp Fun-o, nothing fun at all has happened. It’s dreadful staying at this camp, in your opinion, because there is nothing to do.\nThe next morning, while trying to swim in the foot deep pool, a camp counselor calls you out. You have never seen this guy before and he looks suspicious. He orders you to go into your cabin and to read the note left on your bed and above the door. You, confused, go to see what it is. Entering your cabin, while realizing no one is in there, you read the note on your bed;\n\nWelcome to Camp Puzzlemaca, registration starts inside the waterfall, do not tell anyone!\n\n“Inside the waterfall?” you think to yourself, “Why there? What’s going to happen? Am I moving camps? Oh please tell me I’m moving camps!”\nYou then read the message on the bed;\n\nTo find the key, you must go and peek; in somewhere you’re not allowed!\n \n“That’s it! The Camp Office!” you exclaim. You proudly sneak into the camp office; rapidly steal the key left on the table and start heading to the waterfall. Once reached inside the waterfall, you place the key inside the key holder. What lies behind the keyhole? Or under? Or above? This is when your new camp actually starts…\n \n————————-Rules–———————–\n1. Play on peaceful mode\n2. No breaking blocks unless told to\n3. Sleep always when there are beds\n4. Have fun!\n\n————————-Thanks–———————–\n\nThank you Rubikcubezzz for beta testing my map! Also for Serperior for inspiring me!\n\n————————-————————-——————-\n\nThat’s it for today guys! Follow me on twitter @ApolloMcpe for more! See ya!\n\n(Map Creator: East)",
"date": "2026-06-23 16:47",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140719065611/http://mcpeuniverse.com/maps/camp-puzzlemaca-adventurepuzzleparkour/",
"file": "data/0.8.1/Camp Puzzlemaca/Camp Puzzlemaca.zip",
"thumbnail": "data/0.8.1/Camp Puzzlemaca/thumb_1782233243875.jpg",
"screenshots": [
"data/0.8.1/Camp Puzzlemaca/screen_1_1782233246448.jpg",
"data/0.8.1/Camp Puzzlemaca/screen_2_1782233249212.jpg"
],
"updated_date": "2026-06-28 22:34"
},
{
"title": "Cops N’ Robbers 2.0 PE",
"version": "0.8.1",
"short_description": "Hello and welcome to Cops N’ Robbers 2.0 by the EliteBuilds Team! This is an EXACT port of the PC map full of new 0.8.0 features. Play as prisoners trying to escape a prison full of secrets while following the Warden’s strict orders! We all at Elite Builds hope you enjoy the map!",
"full_description": "(Map Creator: EliteBuilds)\n\nNote: This is the original and official Cops N’ Robbers Map played and used by famous Youtubers such as JackFrostMiner, AceCraftGaming, Nexypl, and MrMooPig!\n\nFeatures:\n\n- Redstone Alternative\n\n- Full features of the original PC Map\n\n- High amounts of detail optimized for 0.8.0\n\n- A nice, genuine PC feel\n\nFollow Us On Twitter! @Elite_Builds\n\nThanks to the PodCrash team for giving us permission to port and use the map!\n\nhttps://twitter.com/podcrashjord/status/415070201235771392",
"date": "2026-06-23 16:57",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140318160910/http://mcpeuniverse.com/maps/0-8-0-official-cops-n-robbers-2-0-for-mcpe-pc-port-by-elitebuilds-played-by-jackfrostminer-acecraft-friends/",
"file": "data/0.8.1/Cops N’ Robbers 2.0 PE/Cops N’ Robbers 2.0 PE.zip",
"thumbnail": "data/0.8.1/Cops N’ Robbers 2.0 PE/thumb_1782233847366.jpg",
"screenshots": [
"data/0.8.1/Cops N’ Robbers 2.0 PE/screen_1_1782233849702.jpg"
],
"updated_date": "2026-06-28 22:41"
},
{
"title": "Dungeon-Craft",
"version": "0.8.1",
"short_description": "Dungeon-Craft isn't a map built in 3 minutes, it's an adventure.",
"full_description": "(Map Creator: Furminator)\n\nIt's full of content and quality. The gameplay consists of jumping puzzles, collecting, and mazes. Most of the jumping is auto-jump for beginners, but there are jumps that will be more on level with skilled players. The game is set in an underground dungeon. But rumors say there's more down there than just dungeons. Will you be able to escape, find out in this exciting map, Dungeon-Craft. Watch this trailer if you want to see what's in store for you in Dungeon-Craft.\n",
"date": "2026-06-23 19:35",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"alt_link": "https://archive.org/download/Minecraft_Archive_Project_Minecraft_Pocket_Edition_2011_and_Orphan_Resources/Minecraft%20Archive%20Project%20-%20Minecraft%20Pocket%20Edition%20-%202011%20and%20Orphan%20Resources.zip/Minecraft%20Pocket%20Edition%2FOrphan%20resources%2F201502%2Fminecraftforum.net%2Fmcpe_maps%2Fdownloads%2Fwww.dropbox.com%2F041%2FDungeon-Craft%200.8.0.zip",
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1977884-dungeon-craft-5-year-anniversary-updated-for-mcpe",
"file": "data/0.8.1/Dungeon-Craft/Dungeon-Craft.zip",
"thumbnail": "data/0.8.1/Dungeon-Craft/thumb_1782243342219.jpg",
"screenshots": [
"data/0.8.1/Dungeon-Craft/screen_1_1782243343545.jpg",
"data/0.8.1/Dungeon-Craft/screen_2_1782243344978.jpg"
],
"updated_date": "2026-06-28 22:43"
},
{
"title": "Dark Realm 0.8.0",
"version": "0.8.1",
"short_description": "Dark Realm [Sequel to Dungeon-Craft]",
"full_description": "The adventure continues... After escaping Dungeon-Craft, you are now free. But the surface world has been covered in eternal darkness. Your only hope for defeating the darkness, is to collect the nine shine blocks. But finding them will require a brave adventurer to explore the entire map and retrieve them. Will you be able to shine the light, or will you be consumed along with the rest of the world. Find out in this epic adventure, and enter... The Dark Realm!",
"date": "2026-06-23 20:42",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/Dark Realm 0.8.0/thumb_1782247322208.jpg",
"file": "data/0.8.1/Dark Realm 0.8.0/Dark Realm 0.8.0.zip",
"screenshots": [
"data/0.8.1/Dark Realm 0.8.0/screen_1_1782247323821.jpg",
"data/0.8.1/Dark Realm 0.8.0/screen_2_1782247325460.jpg",
"data/0.8.1/Dark Realm 0.8.0/screen_3_1782247326998.jpg",
"data/0.8.1/Dark Realm 0.8.0/screen_4_1782247328534.jpg"
],
"alt_link": "https://archive.org/download/Minecraft_Archive_Project_Minecraft_Pocket_Edition_2011_and_Orphan_Resources/Minecraft%20Archive%20Project%20-%20Minecraft%20Pocket%20Edition%20-%202011%20and%20Orphan%20Resources.zip/Minecraft%20Pocket%20Edition%2FOrphan%20resources%2F201502%2Fminecraftforum.net%2Fmcpe_maps%2Fdownloads%2Fwww.dropbox.com%2F84a%2FDark%20Realm%200.8.0.zip",
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1979942-dark-realm-sequel-to-dungeon-craft-updated-for"
},
{
"title": "Dimension-Door",
"version": "0.8.1",
"short_description": "Dimension-Door [Prequel to Dungeon-Craft]",
"full_description": "(Map Creator: Furminator)\n\nGo back to the past, before Dungeon-Craft and discover the events that take place before the adventure began. You are a magician that has been given a life-sentence in Dungeon-Craft, but you have a secret escape up your sleeve, a dimension door. The dimension door can teleport you through walls, and other dimensions. Will you escape, or never see the light of day again... adventure is knocking at Dimension-Door.",
"date": "2026-06-24 03:42",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"file": "data/0.8.1/Dimension-Door/Dimension-Door.zip",
"alt_link": "https://www.mediafire.com/download/j8k2tutty525nsz/Dimension-Door.zip",
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1981720-dimension-door-prequel-to-dungeon-craft-updated",
"thumbnail": "data/0.7.3/Dimension-Door/thumb_1782272547624.jpg",
"screenshots": [
"data/0.7.3/Dimension-Door/screen_1_1782272549361.jpg",
"data/0.7.3/Dimension-Door/screen_2_1782272551309.jpg",
"data/0.7.3/Dimension-Door/screen_3_1782272553458.jpg",
"data/0.7.3/Dimension-Door/screen_4_1782272555507.jpg"
],
"updated_date": "2026-07-01 02:27"
},
{
"title": "Dungeon-Craft: TacoTony's Escape Part 1",
"version": "0.8.1",
"short_description": "Another adventure map in the Dungeon-Craft series continues.",
"full_description": "It takes place after Dimension Door, but before Dungeon-Craft. Confusing isn’t it? Anyways, you play as TacoTony, an employee of Dungeon-Craft. Your job is to file paperwork, which is really boring. One day, you decide you’ve had enough and want to go on an exciting adventure. It won’t be easy, but you have something special that will be very useful. Gravity gravel. With it, you have the ability to reverse gravity, allowing you to walk on the walls! For real! You will be able to flip entire rooms in this map to escape! Don’t believe me, then download and see for yourself. So don’t fall, but take a trip through TacoTony’s Escape!",
"date": "2026-06-24 04:25",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 1/thumb_1782275106748.jpg",
"file": "data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 1/Dungeon-Craft: TacoTony's Escape Part 1.zip",
"screenshots": [
"data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 1/screen_1_1782275108809.jpg",
"data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 1/screen_2_1782275110854.jpg",
"data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 1/screen_3_1782275112287.jpg"
],
"original_link": "https://web.archive.org/web/20170822232655/http://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/2106801-dungeon-craft-tacotonys-escape-part-1-2-out-now"
},
{
"title": "Dungeon-Craft: TacoTony's Escape Part 2",
"version": "0.8.1",
"short_description": "Another adventure map in the Dungeon-Craft series.",
"full_description": "It takes place after Dimension Door, but before Dungeon-Craft. Confusing isn’t it? Anyways, you play as TacoTony, an employee of Dungeon-Craft. Your job is to file paperwork, which is really boring. One day, you decide you’ve had enough and want to go on an exciting adventure. It won’t be easy, but you have something special that will be very useful. Gravity gravel. With it, you have the ability to reverse gravity, allowing you to walk on the walls! For real! You will be able to flip entire rooms in this map to escape! Don’t believe me, then download and see for yourself. So don’t fall, but take a trip through TacoTony’s Escape!",
"date": "2026-06-24 04:35",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 2/thumb_1782275734598.jpg",
"file": "data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 2/Dungeon-Craft: TacoTony's Escape Part 2.zip",
"screenshots": [
"data/0.8.1/Dungeon-Craft: TacoTony's Escape Part 2/screen_1_1782275738271.jpg"
],
"original_link": "https://web.archive.org/web/20140924011945/http://www.minecraftforum.net:80/forums/minecraft-pocket-edition/mcpe-maps/2106801-dungeon-craft-tacotonys-escape-part-1-2-out-now"
},
{
"title": "Survival Island PE",
"version": "0.5.0",
"short_description": "Survival Island PE for 0.5.0",
"full_description": "(Map Creator: maces006)\n\nRules:\n1. No leaving island (no where to go anyway so, lol)\n2. No hacking in blocks of any kind (including lava, water and tnt)\n3. Post screenshots of your achievements if possible\n4. If you die at all, then you lose\n5. Have fun\n\nChallenges:\n1.Build a 2 story house with 20+ windows in it.\n2.Build 10 bookshelves.\n3.Create an underground tree farm.\n4.Create an above ground mob/animal trap.\n5.Gather 10 unused diamonds.\n6.Find the treasure of the Lost Curator.\n7.build an above ground cactus farm\n8.Discover the secret Testing Lab\n9.Fix Nether Reactor + Activate\n9.Kill 7 Zombie Pigmen\n10.Create a cobblestone generator\n11.Construct an airstrip using glowstone for light\n12.Build an aircraft\n13.Build an melon farm onboard the airship\n\nCredits:\nAshien - Creation of Survival Island\nMaces006 - Editing for Pocket Edition usage\nLegspin99 - Challenge idea\n\nVideo by Bmc Boz: https://www.youtube.com/watch?v=oEFSYo_w5OA",
"date": "2026-06-24 17:22",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.5.0/Survival Island PE/thumb_1782765730029.jpg",
"screenshots": [
"data/0.5.0/Survival Island PE/screen_1_1782765731349.jpg",
"data/0.5.0/Survival Island PE/screen_2_1782765733090.jpg",
"data/0.5.0/Survival Island PE/screen_3_1782765734830.jpg"
],
"alt_link": "https://archive.org/download/Minecraft_Archive_Project_Minecraft_Pocket_Edition_2012/Minecraft_Archive_Project_Minecraft_Pocket_Edition_2012.zip/Minecraft%20Pocket%20Edition%2F2012%2F201502%2Fminecraftforum.net%2Fmcpe_maps%2Fdownloads%2Fwww.mediafire.com%2F462%2FSurvival%20Island%20%28P.E%29.zip",
"original_link": "https://web.archive.org/web/20141008012014/http://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1974308-survival-island-pocket-edition-no-more-updates",
"file": "data/0.5.0/Survival Island PE/Survival Island PE.zip",
"updated_date": "2026-06-29 20:42"
},
{
"title": "Fallen Kingdom Mcpe",
"version": "0.8.1",
"short_description": "Finally you can explore, play, and reenact the parody in MC Pocket Edition!",
"full_description": "(Map Creator: TeamWyldcraft)",
"date": "2026-06-24 17:34",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/maps/1535243-fallen-kingdom-near-perfect-replica-w-terrain-open",
"file": "data/0.8.1/Fallen Kingdom Mcpe/Fallen Kingdom Mcpe.zip",
"thumbnail": "data/0.8.1/Fallen Kingdom Mcpe/thumb_1782322478364.jpg",
"screenshots": [
"data/0.8.1/Fallen Kingdom Mcpe/screen_1_1782322479587.jpg"
],
"updated_date": "2026-06-28 22:53"
},
{
"title": "Ant Farm Survival PE",
"version": "0.4.0",
"short_description": "Ant Farm Survival PE 0.4.0",
"full_description": "(Map Creator: mcTATTISSHD)\n\nRules:\nDont break glass\nDont use mods or hack blocks\n\nChallenges:\nFind the hidden sapling farm\nFind all the areas that have a torch\nGet 20 white wool and 5 red wool\nMake a tree farm\nMake 10 book shelves\nMake a wheat farm(20 farmland)\nMake a diamond pickaxe",
"date": "2026-06-24 18:20",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20130616072954/http://www.minecraftforum.net/topic/1499500-ant-farm-survival/",
"file": "data/0.4.0/Ant Farm Survival PE/Ant Farm Survival PE.zip",
"thumbnail": "data/0.4.0/Ant Farm Survival PE/thumb_1782325238414.jpg",
"screenshots": [
"data/0.4.0/Ant Farm Survival PE/screen_1_1782325240761.jpg"
],
"updated_date": "2026-06-28 22:56"
},
{
"title": "Skydiving Map",
"version": "0.5.0",
"short_description": "Skydiving in Minecraft Pocket Edition!",
"full_description": "(Map Creator: Khooplah)\n\nHave you ever wanted to go skydiving? Well I have created a map where you can literally jump off a perfectly good airplane, and try to land in the target area! Try not to die... You already signed the waver!\nOn this map your goal is to survive the jump, and make it through the red rings!\n",
"date": "2026-06-24 18:29",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1977209-sky-diving",
"file": "data/0.5.0/Skydiving Map/Skydiving Map.zip",
"thumbnail": "data/0.5.0/Skydiving Map/thumb_1782325757387.jpg",
"screenshots": [
"data/0.5.0/Skydiving Map/screen_1_1782325759119.jpg"
],
"updated_date": "2026-06-28 23:01"
},
{
"title": "The Dropper PE",
"version": "0.4.0",
"short_description": "This is my map \"THE DROPPER\" for Minecraft pocket edition.",
"full_description": "(Map Creator: Bigre)",
"date": "2026-06-24 18:36",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20130523020233/https://www.minecraftforum.net/topic/1558092-advpuzz-the-dropper-for-minecraft-pocket-edition/",
"file": "data/0.4.0/The Dropper PE/The Dropper PE.zip",
"thumbnail": "data/0.4.0/The Dropper PE/thumb_1782326185839.jpg",
"screenshots": [
"data/0.4.0/The Dropper PE/screen_1_1782326187570.jpg",
"data/0.4.0/The Dropper PE/screen_2_1782326188899.jpg",
"data/0.4.0/The Dropper PE/screen_3_1782326190443.jpg"
],
"updated_date": "2026-06-28 23:03"
},
{
"title": "Skyfall",
"version": "0.8.1",
"short_description": "Skydiving in Minecraft Pocket Edition 0.8.1!",
"full_description": "(Map Creator: TheGamingPotato)",
"date": "2026-06-24 18:52",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20141022185048/http://mcpeuniverse.com/maps/skyfall/",
"file": "data/0.8.1/Skyfall/Skyfall.zip",
"thumbnail": "data/0.8.1/Skyfall/thumb_1782327124013.jpg",
"screenshots": [
"data/0.8.1/Skyfall/screen_1_1782327125472.jpg",
"data/0.8.1/Skyfall/screen_2_1782327126701.jpg",
"data/0.8.1/Skyfall/screen_3_1782327128237.jpg",
"data/0.8.1/Skyfall/screen_4_1782327129772.jpg"
],
"updated_date": "2026-06-28 23:04"
},
{
"title": "FreeFalling Skydiving Map",
"version": "0.8.1",
"short_description": "Enjoy skydiving through three different levels of intense free falling. ",
"full_description": "(Map Creator: Nickdog1999)\n\nThis map was made by me in time for New Years! If you choose to make a video please use this link tinyurl.com/nickdog1999\n\nHappy Diving!",
"date": "2026-06-24 18:59",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140127013124/http://mcpeuniverse.com/maps/freefalling/",
"file": "data/0.8.1/FreeFalling Skydiving Map/FreeFalling Skydiving Map.zip",
"thumbnail": "data/0.8.1/FreeFalling Skydiving Map/thumb_1782327574512.jpg",
"updated_date": "2026-06-28 23:05"
},
{
"title": "The Walls PvP",
"version": "0.4.0",
"short_description": "The Walls PvP For Minecraft Pocket Edition",
"full_description": "(Map Creator: LosAngelesChepes)\n\nThe anticipated walls map for PE is out now!!!\nIt's up to 8 players(2 per team).\n\nRules:\n1.Once you spawn it will take about 1 minute to turn night,sleep in the bed so you spawn on the spawn area\nand not play again.\n2.No breaking the sand wall or the stone brick wall surrounding the pvp arena.\n3.Only one person can win.\n4.You must activate the wall destroyer after 3 days.\n5.You cannot go to other quadrants until the 3 days pass.\n6.You cannot build pass the wall.\nYou cannot build under the wall\n7You must have fun Posted Image",
"date": "2026-06-24 19:17",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20121029094445/http://www.minecraftforum.net/topic/1475613-minecraft-pe-the-walls-pvp-released-now/",
"file": "data/0.4.0/The Walls PvP/The Walls PvP.zip",
"thumbnail": "data/0.4.0/The Walls PvP/thumb_1782328655485.jpg",
"screenshots": [
"data/0.4.0/The Walls PvP/screen_1_1782328657420.jpg",
"data/0.4.0/The Walls PvP/screen_2_1782328658855.jpg",
"data/0.4.0/The Walls PvP/screen_3_1782328660085.jpg",
"data/0.4.0/The Walls PvP/screen_4_1782328661620.jpg"
],
"updated_date": "2026-06-28 23:07"
},
{
"title": "Capture the Wool",
"version": "0.6.1",
"short_description": "Converted by Serperior",
"full_description": "Welcome to the topic that is home to a Capture the Wool map that took a while to convert to Pocket Edition! I spent weeks on this and would appreciate the support if you decided to download!",
"date": "2026-06-24 19:24",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/Capture the Wool/thumb_1782329067967.jpg",
"file": "data/0.6.1/Capture the Wool/Capture the Wool.zip",
"screenshots": [
"data/0.6.1/Capture the Wool/screen_1_1782329069389.jpg",
"data/0.6.1/Capture the Wool/screen_2_1782329070721.jpg"
],
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1979715-capture-the-wool-very-fun-pvp-madness"
},
{
"title": "McDonald’s Parkour",
"version": "0.8.1",
"short_description": "Can you use your parkour skills and brain to get to the happy meal. Don’t forget to eat yr carrots",
"full_description": "(Map Creator: SuperpigCreator)",
"date": "2026-06-24 21:17",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140707004533/http://mcpeuniverse.com/maps/mcdonalds-parkour/",
"file": "data/0.8.1/McDonald’s Parkour/McDonald’s Parkour.zip",
"thumbnail": "data/0.8.1/McDonald’s Parkour/thumb_1782335813170.jpg",
"screenshots": [
"data/0.8.1/McDonald’s Parkour/screen_1_1782335815118.jpg"
],
"updated_date": "2026-06-28 23:09"
},
{
"title": "iMini Games Park",
"version": "0.7.6",
"short_description": "With Many Popular Mini Games Like Cops N’ Robbers, Battle Ladder, Spleef, PvP And More!",
"full_description": "(Map Creator: Maftzer)\n\niMini Games Park Beta Love Playing Mini Games? But Dont Want To Be Downloading Many Maps? Dont Want To Run Out Of Memory? Well Now You Dont Have To Worry About Any Of Does Problem With Mini Games Park You Will Be Entertain For Hours!\n\nYou Wont Get Bored :) Like The Map?\n\nOver 10,000+ Downloads All Versions\n\nNews: v5.5 Dev Is Out :)\n\nPlease Leave A Like :) v5.5 Dev -Bug Fixes A Lot Of Them",
"date": "2026-06-24 21:44",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20131109045812/http://mcpeuniverse.com/maps/imini-games-park-v5-5-the-smooth-era/",
"license": "@Maftzer3 Map Maker 2011",
"file": "data/0.7.6/iMini Games Park/iMini Games Park.zip",
"thumbnail": "data/0.7.6/iMini Games Park/thumb_1782337441751.jpg",
"screenshots": [
"data/0.7.6/iMini Games Park/screen_1_1782337443477.jpg",
"data/0.7.6/iMini Games Park/screen_2_1782337445217.jpg",
"data/0.7.6/iMini Games Park/screen_3_1782337446753.jpg",
"data/0.7.6/iMini Games Park/screen_4_1782337448391.jpg"
],
"updated_date": "2026-06-28 23:11"
},
{
"title": "Epic Sprint Map",
"version": "0.6.1",
"short_description": "Welcome To Epic Sprint Map! The Sprint Parkour World",
"full_description": "Epic Sprint Map is a unique parkour map that uses the Sprint Mod to be at it's best. The entire course will take you through 15 stages that are each very fun and eye-popping. Over three weeks went into building, and at last, Epic Sprint Map is finally here!",
"date": "2026-06-24 22:02",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/Epic Sprint Map/thumb_1782338550519.jpg",
"file": "data/0.6.1/Epic Sprint Map/Epic Sprint Map.zip",
"screenshots": [
"data/0.6.1/Epic Sprint Map/screen_1_1782338552476.jpg",
"data/0.6.1/Epic Sprint Map/screen_2_1782338554126.jpg",
"data/0.6.1/Epic Sprint Map/screen_3_1782338555553.jpg",
"data/0.6.1/Epic Sprint Map/screen_4_1782338557395.jpg"
],
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1978448-epic-sprint-map-sprint-parkour-15-stages-unique"
},
{
"title": "Nick's Parkour Center",
"version": "0.6.1",
"short_description": " Nick's Parkour Center 0.6.1",
"full_description": "Getting tired of old, short parkour maps that are either way too easy or brutally frustrating? Well look no further for the greatest, most detailed, and crazy fun parkour map available for MCPE. NPC offers 9 different courses containing a variety of levels in a detailed, themed course. Each course is a different difficulty, allowing you the user to choose what amount of challenge you want to attempt to complete. This isn't one of those maps you beat in 30 minutes. This map was made to be played for weeks on end. NPC is also formatted for multiplayer. Race your friends through the courses, spleef your way to victory, or see who's better with the bow in the Archery Range. So what are you waiting for, download NPC today!\n\nFeatures:\n- 9 Challenging but Fun Parkour Courses :steve_joyous:\n\n- 60 stages over these courses :steve_sillyface:\n\n- Multiplayer Friendly! :steve_lol:\n\n- Archery Range :|):\n\n- Spleef Arenas (Original and 3 Story) :DS:\n\n- Multiplayer specific course :D\n\n- Inspired by Parkour Maps made by Tetrix1193",
"date": "2026-06-24 22:22",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/Nick's Parkour Center/thumb_1782339728497.jpg",
"file": "data/0.6.1/Nick's Parkour Center/Nick's Parkour Center.zip",
"screenshots": [
"data/0.6.1/Nick's Parkour Center/screen_1_1782339730219.jpg",
"data/0.6.1/Nick's Parkour Center/screen_2_1782339731446.jpg",
"data/0.6.1/Nick's Parkour Center/screen_3_1782339732677.jpg",
"data/0.6.1/Nick's Parkour Center/screen_4_1782339734112.jpg"
],
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1979316-hot-topic-0-7-1-11000-downloads-npc-nicks-parkour"
},
{
"title": "Sonic The Hedgehog Minigame Sprint Parkour",
"version": "0.6.1",
"short_description": "FVDisco's Sonic The Hedgehog Minigame [sprint parkour] [ported from pc]",
"full_description": "(Map Creator: MCMan132)\n\nThis is the Sonic the Hedgehog minigame.This map was made on PC by FVDisco. I ported and edited this map.This is a If you want to play this map,you have to download the sprint mod.The objective of this map is to complete the course in the best time possible.Play in creative.If you fall,fly back to the last block you were on.",
"date": "2026-06-24 22:36",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1978535-fvdiscos-sonic-the-hedgehog-minigame-sprint",
"file": "data/0.6.1/Sonic The Hedgehog Minigame Sprint Parkour/Sonic The Hedgehog Minigame Sprint Parkour.zip",
"thumbnail": "data/0.6.1/Sonic The Hedgehog Minigame Sprint Parkour/thumb_1782340588621.jpg",
"screenshots": [
"data/0.6.1/Sonic The Hedgehog Minigame Sprint Parkour/screen_1_1782340590478.jpg",
"data/0.6.1/Sonic The Hedgehog Minigame Sprint Parkour/screen_2_1782340592112.jpg",
"data/0.6.1/Sonic The Hedgehog Minigame Sprint Parkour/screen_3_1782340593751.jpg"
],
"updated_date": "2026-06-28 23:13"
},
{
"title": "Super Mario Bros parkour map",
"version": "0.7.3",
"short_description": "This is a parkour map about Super Mario Bros, It's a very funny map I hope you like it! Newest update Map version 0.7.3 Created for 0.7.3",
"full_description": "",
"date": "2026-06-24 22:44",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.7.3/Super Mario Bros parkour map/thumb_1782341070211.jpg",
"file": "data/0.7.3/Super Mario Bros parkour map/Super Mario Bros parkour map.zip",
"screenshots": [
"data/0.7.3/Super Mario Bros parkour map/screen_1_1782341072149.jpg",
"data/0.7.3/Super Mario Bros parkour map/screen_2_1782341074204.jpg"
],
"original_link": "https://web.archive.org/web/20140806222942/http://www.minecraftforum.net:80/forums/minecraft-pocket-edition/mcpe-maps/1977817-super-mario-bros-parkour-map-new-map-version-0-7-3"
},
{
"title": "Super Craft Bros Brawl 2.5",
"version": "0.7.3",
"short_description": "Welcome to Super Craft Brothers 2.5!",
"full_description": "(Map Creator: Serperior)\n\nIn this minigame, survive and thrive against your opponents using your favorite class! Play with your friends, play with your enemies, play with your acquaintances! The general goal of the map is to kill all of your opponents, and win your battles. We have Redstone alternatives! We have chickens! What more do you need? Well how about 6 new classes!? AND a new map! Come download the map!\n\nHow to begin:\n\nRead the rules (And credits)\n\nGo down the ladders\n\nBreak the sand\n\nChoose your map\n\nChoose your class\n\nThen kill everything!\n\nThis map is an official Team Serperior Super Craft Brothers PE map, made by Team Serperior. Here are the individual members that had a part in this map.\n\nKhooplah, Serperior, Sirius, Shifter20, RubenPE [no longer in Team Serperior], Tengus, and XxHexEditorxX\n\nEnjoy the map and have fun,\n\nSincerely,\n\nTeam Serperior",
"date": "2026-06-24 23:03",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20130912061748/http://www.minecraftforum.net/topic/1713878-by-team-serperior-super-craft-bros-brawl-25-updated-with-all-new-classses-and-a-battlefield/",
"file": "data/0.7.3/Super Craft Bros Brawl 2.5/Super Craft Bros Brawl 2.5.zip",
"thumbnail": "data/0.7.3/Super Craft Bros Brawl 2.5/thumb_1782342205181.jpg",
"screenshots": [
"data/0.7.3/Super Craft Bros Brawl 2.5/screen_1_1782342206744.jpg",
"data/0.7.3/Super Craft Bros Brawl 2.5/screen_2_1782342208177.jpg",
"data/0.7.3/Super Craft Bros Brawl 2.5/screen_3_1782342209611.jpg",
"data/0.7.3/Super Craft Bros Brawl 2.5/screen_4_1782342211462.jpg"
],
"updated_date": "2026-06-28 23:15"
},
{
"title": "The Teacher minigame",
"version": "0.6.1",
"short_description": "The Teacher is a minigame made by NoahCraftFTW for the pc",
"full_description": "The Teacher is a minigame that is very similar to\nthe minigame Cops And Robbers.\nThere will be 1 teacher and the rest of the players will be the students.\nThe goal for the students is to craft a diamond sword and\nkill the teacher or escape the school.\nThe goal for the teacher is to kill the student with the diamond sword.\nYou have to craft the diamond sword using items that\ncan be found in chests around the school.\nYou can't kill the teacher with your hands.",
"date": "2026-06-24 23:09",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/The Teacher minigame/thumb_1782342588479.jpg",
"file": "data/0.6.1/The Teacher minigame/The Teacher minigame.zip",
"screenshots": [
"data/0.6.1/The Teacher minigame/screen_1_1782342590352.jpg",
"data/0.6.1/The Teacher minigame/screen_2_1782342591975.jpg",
"data/0.6.1/The Teacher minigame/screen_3_1782342593625.jpg",
"data/0.6.1/The Teacher minigame/screen_4_1782342595658.jpg"
],
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1979794-hot-topic-the-teacher-minigame-download-link"
},
{
"title": "Multi Run Mini Game [4 races in 1 map!]",
"version": "0.7.5",
"short_description": "(Supported 0.8.1 or above Minecraft Pocket Edition<ios and Android>)",
"full_description": "(Map Creator: YJproject)\n\nPlay with your fiends and have fun!:D\nFully workable And-Gate at first and a winer,loser detect system\n4 races in total, more and more in the future!",
"date": "2026-06-24 23:17",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1982462-mcpe-multi-run-mini-game-4-races-in-1-map-download",
"file": "data/0.7.5/Multi Run Mini Game [4 races in 1 map!]/Multi Run Mini Game [4 races in 1 map!].zip",
"thumbnail": "data/0.7.5/Multi Run Mini Game [4 races in 1 map!]/thumb_1782343058922.jpg",
"screenshots": [
"data/0.7.5/Multi Run Mini Game [4 races in 1 map!]/screen_1_1782343060769.jpg",
"data/0.7.5/Multi Run Mini Game [4 races in 1 map!]/screen_2_1782343063242.jpg",
"data/0.7.5/Multi Run Mini Game [4 races in 1 map!]/screen_3_1782343065069.jpg"
],
"updated_date": "2026-06-28 23:17"
},
{
"title": "Herobrines Mansion Map",
"version": "0.6.1",
"short_description": "PE Port of Herobrines Mansion Creative",
"full_description": "",
"date": "2026-06-24 23:30",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/Herobrines Mansion Map/thumb_1782343790294.jpg",
"file": "data/0.6.1/Herobrines Mansion Map/Herobrines Mansion Map.zip",
"screenshots": [
"data/0.6.1/Herobrines Mansion Map/screen_1_1782343792122.jpg",
"data/0.6.1/Herobrines Mansion Map/screen_2_1782343793760.jpg",
"data/0.6.1/Herobrines Mansion Map/screen_3_1782343795604.jpg"
],
"original_link": "https://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-maps/1978425-herobrines-mansion-over-30-000-download-on-mcpe"
},
{
"title": "Mine York City 0.6.1",
"version": "0.6.1",
"short_description": "Welcome to Mine York City, the land of opportunity.",
"full_description": "(Map Creator: John4987)\n\nSo what does this map have? It has:\n\nMany Skyscrapers (more than 40!)\nA Concert Hall (or stage)\nA Small Shopping Mall\nAn entire road system\nAn entire subway system\nAn entire Highway system\nAt least 5 different islands, all boroughs of the city (Minehatten, Blocker, Lapiz Island, Nether Island, and Ender Island)\nApartment Buildings, characterized if they have beds on every floor\nA small Baseball stadium, home to the Mine York Ghasts.\nThe City's modern Iron Public Library on Nether Island\nMine York City International Airport, next to the largest Highway intersection in the city",
"date": "2026-06-24 23:40",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20130313145856/http://www.minecraftforum.net/topic/1545666-mine-york-city-myc/",
"file": "data/0.6.1/Mine York City 0.6.1/Mine York City 0.6.1.zip",
"thumbnail": "data/0.6.1/Mine York City 0.6.1/thumb_1782344421278.jpg",
"screenshots": [
"data/0.6.1/Mine York City 0.6.1/screen_1_1782344424975.jpg",
"data/0.6.1/Mine York City 0.6.1/screen_2_1782344428244.jpg",
"data/0.6.1/Mine York City 0.6.1/screen_3_1782344430499.jpg",
"data/0.6.1/Mine York City 0.6.1/screen_4_1782344433486.jpg"
],
"updated_date": "2026-06-28 23:19"
},
{
"title": "Hogwarts Map",
"version": "0.6.1",
"short_description": "Welcome to the School of Witchcraft and Wizardry ",
"full_description": "(Map Creator: MCPEPorts)",
"date": "2026-06-24 23:50",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "http://minecraftpeworlds.blogspot.com/2013/05/hogwarts-map.html",
"file": "data/0.6.1/Hogwarts Map/Hogwarts Map.zip",
"thumbnail": "data/0.6.1/Hogwarts Map/thumb_1782345028746.jpg",
"screenshots": [
"data/0.6.1/Hogwarts Map/screen_1_1782345030365.jpg",
"data/0.6.1/Hogwarts Map/screen_2_1782345031638.jpg",
"data/0.6.1/Hogwarts Map/screen_3_1782345033218.jpg"
],
"updated_date": "2026-06-28 23:21"
},
{
"title": "Redstone Alternative Tutorial Map",
"version": "0.7.2",
"short_description": "This map features Redstone Alternative Tutorials! So you can use those contraptions in an Adventure Map!",
"full_description": "(Map Creator: BillyDilly)\n\nFAQ\n\n Q: WHAT IS REDSTONE ALTERNATIVE?\n A: REDSTONE ALTERNATIVE IS MAKING A INTERACTIVE CONTRAPTION WITHOUT REDSTONE, FOR EXAMPLE, MAKING A GATE WIHOUT REDSTONE!\n Q: WHAT WILL I LEARN IN THIS TUTORIAL MAP?\n A: YOU’LL LEARN HOW TO MAKE A GATE, TIMER, PRESURE PLATE, AND A LOT MORE…",
"date": "2026-06-24 23:56",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20130910104651/http://mcpeuniverse.com/maps/redstone-alternative-tutorial-map/",
"file": "data/0.7.2/Redstone Alternative Tutorial Map/Redstone Alternative Tutorial Map.zip",
"thumbnail": "data/0.7.2/Redstone Alternative Tutorial Map/thumb_1782345363268.jpg",
"screenshots": [
"data/0.7.2/Redstone Alternative Tutorial Map/screen_1_1782345365409.jpg"
],
"updated_date": "2026-06-28 23:22"
},
{
"title": "Skyblock Survival Ultimate v2.3",
"version": "0.7.2",
"short_description": "Hey guys it's me Ted :D I created a special version of Skyblock. It's called Skyblock Sruvival Ultimate.",
"full_description": "(Map Creator: KingNightmares)\n\nList of features\n\nThere are 24 islands in the whole map.\n- Sarter island\n- Gravel island\n- Coal ore island\n- Iron ore island\n- Clay island\n- Gold ore island\n- Stone island\n- Redstone ore island\n- Sand island\n- Lapis Lazuli ore island\n- Diamond ore island\n- Mossy cobblestone island\n- Chest island\n- Obsidian island\n- Farm island\n- Ice island\n- Bookshelves island\n- Bricks island\n- Glass island\n- Sandstone island\n- Cobweb island\n- Quartz island\n- Glowstone island\n- Snow island\nAnd on (almost) every island there are chests with useful blocks and items!\n\n\nRules\n\n- Play in Survival mode (don't play on peaceful)\n- Don't cheat!\n- Do not purposely jump off the island to regenerate your health.\n- Have fun! :D",
"date": "2026-06-25 00:01",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.planetminecraft.com/project/skyblock-survival-ultimate-v10-for-mcpe-minecraft-pocket-edition-040/",
"file": "data/0.7.2/Skyblock Survival Ultimate v2.3/Skyblock Survival Ultimate v2.3.zip",
"thumbnail": "data/0.7.2/Skyblock Survival Ultimate v2.3/thumb_1782345676004.jpg",
"screenshots": [
"data/0.7.2/Skyblock Survival Ultimate v2.3/screen_1_1782345677320.jpg",
"data/0.7.2/Skyblock Survival Ultimate v2.3/screen_2_1782345678344.jpg",
"data/0.7.2/Skyblock Survival Ultimate v2.3/screen_3_1782345679574.jpg",
"data/0.7.2/Skyblock Survival Ultimate v2.3/screen_4_1782345680802.jpg"
],
"updated_date": "2026-06-28 23:23"
},
{
"title": "SkyGrid PE Map",
"version": "0.6.1",
"short_description": "The awesome PC map made by SethBling is now fully compatible with Pocket Edition! Using Sethblings filter for MCEdit I made the blocks closer together and filtered out the incompatible blocks.",
"full_description": "",
"date": "2026-06-25 00:04",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/SkyGrid PE Map/thumb_1782345845778.jpg",
"file": "data/0.6.1/SkyGrid PE Map/SkyGrid PE Map.zip",
"original_link": "http://minecraftpeworlds.blogspot.com/2013/07/skygrid-pe.html"
},
{
"title": "The Nether Reactor Adventure Map",
"version": "0.6.1",
"short_description": "This is the The nether reactor aventure map (ver 0.6.1 ) rules story and objectives",
"full_description": "(Map Creator: MysteryManSteve18) \n\nNOTE: if you play this map higher that 0.6.1, it will be unplayable due to lava igniting tnt at the wrong time\n\nrules:\n\nYou're not allowed to build or break Blocks apart from the 4 gold blocks to complete the reactor aand cobwebs and melons for food!\nYou can place water block in the volcano to put out some of the lava and the 4 gold blocks and diamond blocks!\n\nIf you die you can try to find where you were !\nYou're allowed to set of tnt using flint and steel!\n\nHave fun!\n\n\n\nImportant info must read:\n\n1 to fix roof lighting glitch go to reacter dome\n and place a torch on the red obsidian tube coming out of the reacter.\n\n2 to get to the over world you must set of the reacter\n and escape it.then wait for water to spill down the red obsidian tube.\n\n3 then swim up the red obsidian tube in to in the over world.\n\nif you die and lose your gold block you will need to restart the map!!!!!!!!!!!!\n\nstory:\n\nOur adventurer, steve Spades,wakes up to find his world\nhas turned to hell and the villagers have turned in to monster.Because the last remaining active reactor has failed\nand has let the never and the overworld join as one!!!.\n\nBut there is hope as one reactor is not burned out.\nThere is one problem though the reactor is missing its 4 gold power blocks.\n\nsteve Spades must go to the 4 forbidden temples where he will have to \ntackle countless chalenges to get the 4 gold blocks and to save his village and world !.\n\nCan Steve collect the treasure of the temples?\nAnd also, will Steve live to fight another day?\n\ncompletion percentages\n\nEach gold block = 12.5% overall completion.\n\nEach diamond block in the over world = 12.5% overall completion.\n\nTo get the complet 100% get all 4 gold blocks and all 4 diamond blocks.\n\nplease leave comments and suggestions on the forms page.\n\n\nthis map was designed and created by Mystery man steve!",
"date": "2026-06-25 00:11",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.planetminecraft.com/project/060-compatible-nether-reactor-adventure-map-for-mc-pe-/",
"file": "data/0.6.1/The Nether Reactor Adventure Map/The Nether Reactor Adventure Map.zip",
"thumbnail": "data/0.6.1/The Nether Reactor Adventure Map/thumb_1782852986872.jpg",
"screenshots": [
"data/0.6.1/The Nether Reactor Adventure Map/screen_1_1782852988311.jpg",
"data/0.6.1/The Nether Reactor Adventure Map/screen_2_1782852989743.jpg",
"data/0.6.1/The Nether Reactor Adventure Map/screen_3_1782852991177.jpg",
"data/0.6.1/The Nether Reactor Adventure Map/screen_4_1782852992406.jpg"
],
"updated_date": "2026-06-30 21:26"
},
{
"title": "Toy Story 2 Adventure Map 1.2",
"version": "0.6.1",
"short_description": "This map was originally built by PitchBlackPL. I have spent the last few weeks making it completely compatible for Minecraft Pocket.",
"full_description": "",
"date": "2026-06-25 00:21",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.6.1/Toy Story 2 Adventure Map 1.2/thumb_1782346904381.jpg",
"file": "data/0.6.1/Toy Story 2 Adventure Map 1.2/Toy Story 2 Adventure Map 1.2.zip",
"screenshots": [
"data/0.6.1/Toy Story 2 Adventure Map 1.2/screen_1_1782346905926.jpg",
"data/0.6.1/Toy Story 2 Adventure Map 1.2/screen_2_1782346907354.jpg",
"data/0.6.1/Toy Story 2 Adventure Map 1.2/screen_3_1782346908992.jpg",
"data/0.6.1/Toy Story 2 Adventure Map 1.2/screen_4_1782346910642.jpg"
],
"original_link": "http://minecraftpeworlds.blogspot.com/p/toy-story-2-mcpe.html"
},
{
"title": "Sand Scrambler By Ace",
"version": "0.6.1",
"short_description": "Burn the wood above you with flint and steel and sand will start falling, last person standing wins",
"full_description": "(Map Creator: Ace)\n\nVideo By JackFrostMiner: https://www.youtube.com/watch?v=WCOq6O5EqFM",
"date": "2026-06-25 00:33",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://www.youtube.com/watch?v=WCOq6O5EqFM",
"file": "data/0.6.1/Sand Scrambler By Ace/Sand Scrambler By Ace.zip",
"thumbnail": "data/0.6.1/Sand Scrambler By Ace/thumb_1782347576278.jpg",
"screenshots": [
"data/0.6.1/Sand Scrambler By Ace/screen_1_1782347579109.jpg"
],
"updated_date": "2026-06-28 23:28"
},
{
"title": "Ollan Island PE",
"version": "0.8.1",
"short_description": "Ollan Island is a mp created by Enmah and ported to pocket edition by me, It features a roller coaster casino on the beachfront and a water slide, I hope you enjoy.",
"full_description": "",
"date": "2026-06-25 00:46",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/Ollan Island PE/thumb_1782348351529.jpg",
"file": "data/0.8.1/Ollan Island PE/Ollan Island PE.zip",
"screenshots": [
"data/0.8.1/Ollan Island PE/screen_1_1782348354305.jpg",
"data/0.8.1/Ollan Island PE/screen_2_1782348357773.jpg"
],
"original_link": "https://web.archive.org/web/20131219070828/http://mcpeuniverse.com/maps/ollan-island-pc-port/"
},
{
"title": "School Rules Adventure Map",
"version": "0.8.1",
"short_description": "A new cool Map :) It's call School Rules!",
"full_description": "(Map Creator: KevkeTheGator)\n\nRules:\n\n\nNod Mods\n\nNO CHEAT \n\nDONT PLAY ON PEACEFUL!\n\nHave fun♥ =)",
"date": "2026-06-25 00:55",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"original_link": "https://web.archive.org/web/20140601063855/http://mcpeuniverse.com/maps/mcpe-0-8-1-school-rules-adventure-map/",
"file": "data/0.8.1/School Rules Adventure Map/School Rules Adventure Map.zip",
"thumbnail": "data/0.8.1/School Rules Adventure Map/thumb_1782348931116.jpg",
"updated_date": "2026-06-28 23:30"
},
{
"title": "xPoizon’s Theme Park",
"version": "0.8.1",
"short_description": "A Theme Park Made by xPoizon",
"full_description": "Park includes\n\n4 custom roller coasters: A huge wooden roller coaster, a wild mouse, a standard coaster, a flashback coaster, a merry go round, a ferris wheel, a maze, a drop tower, a shooting range, a flying planes ride, restrooms, office, and maintenance building. \n\nWater Park Includes;\n\nOriginal layout from Custom Water Park, New changing rooms, new wavepool, new slide complex, new lights, and bigger parking lot. \n\nI have included both survival and creative versions. Please give a like for all my hard work. ",
"date": "2026-06-25 01:04",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/xPoizon’s Theme Park/thumb_1782349438824.jpg",
"file": "data/0.8.1/xPoizon’s Theme Park/xPoizon’s Theme Park.zip",
"screenshots": [
"data/0.8.1/xPoizon’s Theme Park/screen_1_1782349441591.jpg",
"data/0.8.1/xPoizon’s Theme Park/screen_2_1782349444253.jpg"
],
"original_link": "https://web.archive.org/web/20140421234917/http://mcpeuniverse.com/maps/xpoizon-0-8-1-theme-park/"
},
{
"title": "xPoizon’s Golf Course",
"version": "0.8.1",
"short_description": "This is pretty much the first mcpe full length, realistic course! It took a long time of building, then I decided I wanted to put some houses with it too!",
"full_description": "",
"date": "2026-06-25 01:13",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/xPoizon’s Golf Course/thumb_1782350030289.jpg",
"file": "data/0.8.1/xPoizon’s Golf Course/xPoizon’s Golf Course.zip",
"screenshots": [
"data/0.8.1/xPoizon’s Golf Course/screen_1_1782350031817.jpg",
"data/0.8.1/xPoizon’s Golf Course/screen_2_1782350033250.jpg"
],
"original_link": "https://web.archive.org/web/20140527030536/http://mcpeuniverse.com/maps/xpoizons-golf-course/"
},
{
"title": "xPoizon’s City",
"version": "0.8.1",
"short_description": "The entire map was made using minecraft pe (I only transferred it to PC to get some hi res pics with a texture pack), and has taken over two years off and on to create.",
"full_description": "",
"date": "2026-06-25 03:12",
"type": "maps",
"author": {
"name": "Unix704",
"avatar": "https://avatars.githubusercontent.com/u/76746346?v=4"
},
"thumbnail": "data/0.8.1/xPoizon’s City/thumb_1782357101553.jpg",
"file": "data/0.8.1/xPoizon’s City/xPoizon’s City.zip",
"screenshots": [
"data/0.8.1/xPoizon’s City/screen_1_1782357110277.jpg",
"data/0.8.1/xPoizon’s City/screen_2_1782357113041.jpg",
"data/0.8.1/xPoizon’s City/screen_3_1782357115912.jpg"
],
"original_link": "https://web.archive.org/web/20140708052615/http://mcpeuniverse.com/maps/xpoizons-city/"