-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBUILD_INSTRUCTIONS.cpp
22 lines (22 loc) · 2.02 KB
/
BUILD_INSTRUCTIONS.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
// Start of script
int main()
{
// Starter info
std::cout << "Build instructions for GitHub/seanpm2001/SeansLifeArchive_MinecraftPE_Backup_Worlds_Minecity2003\n";
std::cout << "This repository is an archive of all versions of my Minecraft PE world: minecity2003\n";
std::cout << "Before you can use these worlds, please make sure of the following things:\n";
// Requirements
std::cout << "* That your storage location for Minecraft is set to `external`";
std::cout << "* That your device is running Android (it might work on iOS, but I am not sure)";
std::cout << "* That you are running a matching Minecraft version (a listing of what version each backup is using is listed in another repository";
std::cout << "* That your device has at least 20-512 megabytes of free space, and at least 2 gigabytes of RAM";
// Start
std::cout << "This is a backup of all the versions of the world, according to my journaling structure. There are currently some issues on the GitHub build, including files being outside of the target directories, and the separate 2019 directory (all sub-directories should be at the parent directory)";
std::cout << "The worlds are sorted by a monthly ID, starting at 1,July 2019, 2,August 2019, etc... up to 21,March 2021";
std::cout << "To start using the world, locate your device storage and go to: games/com.mojang/MinecraftWorlds/ then cut/copy and paste the directory containing the world code hr8... into this folder (you can also use the zip file and extract it) you do not need to remove extra files before running the game, just make sure not to do this while the game is running";
std::cout << "Please also make sure that there is not already another world in your MinecraftWorlds folder labeled minecity2003.";
// Outro
std::cout << "Once installed, you will have a copy of the entire world. You can now change any setting you want, and do whatever you want to the world. If things go wrong, just delete it, and replace the backup";
}
// End of script