Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyiro committed Mar 8, 2021
1 parent 9814a27 commit d3d28b9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 23 additions & 2 deletions EasyInstaller/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ def main():
print(f'\nTotal: {len(versions)}')
if len(file) > 0:
print(f'Type C, if you want to continue any of {len(file)} download(s)')
print("Type D, if you want to use a custom manifest")

cli = LegendaryCLI()

Expand All @@ -151,6 +152,26 @@ def main():
print(f' * [{x}] {y["name"]} | {y["game_folder"]}')
idx = int(input('Please enter a number of the version you want to continue downloading: '))
cli.install_game(file[idx]["version"], file[idx]["game_folder"], file[idx]["override_base_url"])
if idx.lower().startswith('d'):
manifest_url = input('Please input a custom manifest directory/url: ')
game_folder = input('Please enter a game folder location: ')

path_block = [ '*', '?', '"', '<', '>', '|' ]

for x in path_block:
game_folder = game_folder.replace(x, '')

with open(installations, "w") as write_file:
file.append({
"name": manifest_url,
"version": manifest_url,
"override_base_url": "https://epicgames-download1.akamaized.net/Builds/Fortnite/CloudDir",
"game_folder": game_folder
})
json.dump(file, write_file)
# Yep, no android manifest support
cli.install_game(manifest_url, game_folder, "https://epicgames-download1.akamaized.net/Builds/Fortnite/CloudDir")
cli.core.exit()
else:
idx = int(idx)
game_folder = input('Please enter a game folder location: ')
Expand All @@ -174,10 +195,10 @@ def main():
})
json.dump(file, write_file)
cli.install_game(versions[versions_s[idx]], game_folder, override_base_url)
cli.core.exit()
cli.core.exit()
print("Credits:")
print("Derrod for creating legendary")
print("Lupus for contributing EasyInstaller")
print("Lupus for originally creating EasyInstaller")
print("Kyiro for maintaining EasyInstaller")
print("Download finished!")
print("You can close this window now")
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# THIS REPO HAS BEEN ARCHIVED. NO SUPPORT WILL BE GIVEN
**https://github.com/VastBlast/FortniteManifestArchive is a pretty good alternative**
# Fortnite Manifest Archive
Manifests can be used for downloading diffrent versions of Fortnite.

Expand Down

0 comments on commit d3d28b9

Please sign in to comment.