Created
February 7, 2021 13:04
-
-
Save ERmilburn02/ce6f2773d6b0323cdc40eb0e64c9421c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // DotNet Core 3.1 | |
| using System; | |
| using System.Net; | |
| using System.IO; | |
| // https://play.retro-mmo.com/res/images/tilesheets/cave.png | |
| // tilesheets/cave.png | |
| namespace Downloader | |
| { | |
| class Program | |
| { | |
| static void CreatedFolder(string folder) | |
| { | |
| Console.WriteLine($"Created folder: {folder}"); | |
| } | |
| static void StartedDownload(string url) | |
| { | |
| Console.WriteLine($"Started download: {url}"); | |
| } | |
| static void FinishedDownload(string url) | |
| { | |
| Console.WriteLine($"Finished download: {url}"); | |
| } | |
| static void Main(string[] args) | |
| { | |
| string baseFolder = Directory.GetCurrentDirectory(); | |
| string resFolder = Path.Combine(baseFolder, "res"); | |
| string imgFolder = Path.Combine(resFolder, "images"); | |
| if (!Directory.Exists(resFolder)) | |
| { | |
| Directory.CreateDirectory(resFolder); | |
| CreatedFolder(resFolder); | |
| } | |
| if (!Directory.Exists(imgFolder)) | |
| { | |
| Directory.CreateDirectory(imgFolder); | |
| CreatedFolder(imgFolder); | |
| } | |
| string baseUrl = "https://play.retro-mmo.com/res/images/"; | |
| string[] urls = File.ReadAllLines(Path.Combine(baseFolder, "res.txt")); | |
| foreach (string url in urls) | |
| { | |
| try | |
| { | |
| WebClient client = new WebClient(); | |
| string fileName = url.Substring(url.LastIndexOf('/') + 1); | |
| string fileWithoutBase = url.Substring(baseUrl.Length); | |
| string folderStructure = fileWithoutBase.Remove(fileWithoutBase.LastIndexOf('/')); | |
| string[] folders = folderStructure.Split('/'); | |
| string currentFolder = imgFolder; | |
| foreach (string folder in folders) | |
| { | |
| string newFolder = Path.Combine(currentFolder, folder); | |
| if (!Directory.Exists(newFolder)) | |
| { | |
| Directory.CreateDirectory(newFolder); | |
| CreatedFolder(newFolder); | |
| } | |
| currentFolder = newFolder; | |
| } | |
| string fileLocation = Path.Combine(currentFolder, fileName); | |
| StartedDownload(url); | |
| client.DownloadFile(url, fileLocation); | |
| FinishedDownload(url); | |
| } | |
| catch (Exception _ex) | |
| { | |
| Console.WriteLine($"An error occurred whilst attempting to download {url} : {_ex}"); | |
| } | |
| } | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://play.retro-mmo.com/res/images/chat/global.png | |
| https://play.retro-mmo.com/res/images/chat/party.png | |
| https://play.retro-mmo.com/res/images/abilities/attack.png | |
| https://play.retro-mmo.com/res/images/abilities/heal.png | |
| https://play.retro-mmo.com/res/images/abilities/healthPotion.png | |
| https://play.retro-mmo.com/res/images/abilities/manaPotion.png | |
| https://play.retro-mmo.com/res/images/badges/admin.png | |
| https://play.retro-mmo.com/res/images/badges/moderator.png | |
| https://play.retro-mmo.com/res/images/badges/subscriber.png | |
| https://play.retro-mmo.com/res/images/banks/gold.png | |
| https://play.retro-mmo.com/res/images/buttons/black.png | |
| https://play.retro-mmo.com/res/images/buttons/red.png | |
| https://play.retro-mmo.com/res/images/chests/wood.png | |
| https://play.retro-mmo.com/res/images/cursors/bag.png | |
| https://play.retro-mmo.com/res/images/cursors/default.png | |
| https://play.retro-mmo.com/res/images/cursors/staff.png | |
| https://play.retro-mmo.com/res/images/cursors/sword.png | |
| https://play.retro-mmo.com/res/images/cursors/trashcan.png | |
| https://play.retro-mmo.com/res/images/icons/abilities.png | |
| https://play.retro-mmo.com/res/images/icons/gold.png | |
| https://play.retro-mmo.com/res/images/icons/grayArrowLeft.png | |
| https://play.retro-mmo.com/res/images/icons/grayArrowRightLarge.png | |
| https://play.retro-mmo.com/res/images/icons/grayArrowRightSmall.png | |
| https://play.retro-mmo.com/res/images/icons/greenArrowRight.png | |
| https://play.retro-mmo.com/res/images/icons/inventory.png | |
| https://play.retro-mmo.com/res/images/icons/question.png | |
| https://play.retro-mmo.com/res/images/icons/redArrowRight.png | |
| https://play.retro-mmo.com/res/images/icons/redX.png | |
| https://play.retro-mmo.com/res/images/icons/stats.png | |
| https://play.retro-mmo.com/res/images/inns/girl.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye1.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye10.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye11.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye12.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye13.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye14.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye15.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye16.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye2.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye3.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye4.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye5.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye6.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye7.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye8.png | |
| https://play.retro-mmo.com/res/images/items/defaultClothesDye9.png | |
| https://play.retro-mmo.com/res/images/items/defaultHairDye1.png | |
| https://play.retro-mmo.com/res/images/items/defaultHairDye2.png | |
| https://play.retro-mmo.com/res/images/items/defaultHairDye3.png | |
| https://play.retro-mmo.com/res/images/items/defaultHairDye4.png | |
| https://play.retro-mmo.com/res/images/items/defaultHairDye5.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask1.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask10.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask11.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask12.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask13.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask14.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask2.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask3.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask4.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask5.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask6.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask7.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask8.png | |
| https://play.retro-mmo.com/res/images/items/defaultMask9.png | |
| https://play.retro-mmo.com/res/images/items/defaultOutfit1.png | |
| https://play.retro-mmo.com/res/images/items/defaultOutfit2.png | |
| https://play.retro-mmo.com/res/images/items/healthPotion.png | |
| https://play.retro-mmo.com/res/images/items/manaPotion.png | |
| https://play.retro-mmo.com/res/images/items/marcyMask.png | |
| https://play.retro-mmo.com/res/images/items/messyHairMask.png | |
| https://play.retro-mmo.com/res/images/items/peebsMask.png | |
| https://play.retro-mmo.com/res/images/items/petRock.png | |
| https://play.retro-mmo.com/res/images/items/pinkHairDye.png | |
| https://play.retro-mmo.com/res/images/items/powerMask.png | |
| https://play.retro-mmo.com/res/images/items/underwearOutfit.png | |
| https://play.retro-mmo.com/res/images/monsters/caveBat.png | |
| https://play.retro-mmo.com/res/images/monsters/evilStump.png | |
| https://play.retro-mmo.com/res/images/monsters/goblinArcher.png | |
| https://play.retro-mmo.com/res/images/monsters/goblinGrunt.png | |
| https://play.retro-mmo.com/res/images/monsters/goblinWarrior.png | |
| https://play.retro-mmo.com/res/images/monsters/hoarfrost.png | |
| https://play.retro-mmo.com/res/images/monsters/killerWasp.png | |
| https://play.retro-mmo.com/res/images/monsters/lizard.png | |
| https://play.retro-mmo.com/res/images/monsters/madTurkey.png | |
| https://play.retro-mmo.com/res/images/monsters/mole.png | |
| https://play.retro-mmo.com/res/images/monsters/mole.png | |
| https://play.retro-mmo.com/res/images/monsters/sludge.png | |
| https://play.retro-mmo.com/res/images/monsters/slush.png | |
| https://play.retro-mmo.com/res/images/monsters/snowman.png | |
| https://play.retro-mmo.com/res/images/monsters/spider.png | |
| https://play.retro-mmo.com/res/images/monsters/valtiA.png | |
| https://play.retro-mmo.com/res/images/monsters/valtiB.png | |
| https://play.retro-mmo.com/res/images/monsters/valtiC.png | |
| https://play.retro-mmo.com/res/images/panels/bordered.png | |
| https://play.retro-mmo.com/res/images/panels/chest.png | |
| https://play.retro-mmo.com/res/images/panels/framedGold.png | |
| https://play.retro-mmo.com/res/images/panels/framedGray.png | |
| https://play.retro-mmo.com/res/images/shops/girl.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/armored/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/armored/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/armored2/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/armored2/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/underwear/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/bodies/underwear/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/afro/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/afro/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bald/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bald/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bearEars/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bearEars/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bearded/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bearded/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bow/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bow/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bow/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/bow/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/buns/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/buns/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/buzzed/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/buzzed/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/floof/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/floof/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/headband/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/headband/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/headband/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/headband/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/helmet/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/helmet/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/helmet2/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/helmet2/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/long/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/long/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/long/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/long/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/marcy/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/marcy/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/marcy/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/marcy/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/messy/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/messy/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/messyBun/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/messyBun/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/peebs/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/peebs/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/peebs/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/peebs/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/pigtails/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/pigtails/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/pigtails/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/pigtails/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/power/back/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/power/back/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/power/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/power/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/shaved/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/shaved/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/shortFloof/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/shortFloof/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/spiked/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/spiked/front/masculine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/swoop/front/feminine.png | |
| https://play.retro-mmo.com/res/images/sprites/heads/swoop/front/masculine.png | |
| https://play.retro-mmo.com/res/images/tilesheets/cave.png | |
| https://play.retro-mmo.com/res/images/tilesheets/desertA.png | |
| https://play.retro-mmo.com/res/images/tilesheets/desertB.png | |
| https://play.retro-mmo.com/res/images/tilesheets/doorsInside.png | |
| https://play.retro-mmo.com/res/images/tilesheets/doorsOutside.png | |
| https://play.retro-mmo.com/res/images/tilesheets/dungeonA.png | |
| https://play.retro-mmo.com/res/images/tilesheets/dungeonB.png | |
| https://play.retro-mmo.com/res/images/tilesheets/grasslandsA.png | |
| https://play.retro-mmo.com/res/images/tilesheets/grasslandsB.png | |
| https://play.retro-mmo.com/res/images/tilesheets/iceRock.png | |
| https://play.retro-mmo.com/res/images/tilesheets/overworld.png | |
| https://play.retro-mmo.com/res/images/tilesheets/smoke.png | |
| https://play.retro-mmo.com/res/images/tilesheets/temple.png | |
| https://play.retro-mmo.com/res/images/tilesheets/townA.png | |
| https://play.retro-mmo.com/res/images/tilesheets/townB.png | |
| https://play.retro-mmo.com/res/images/tilesheets/townC.png | |
| https://play.retro-mmo.com/res/images/tilesheets/townD.png | |
| https://play.retro-mmo.com/res/images/ui/inventoryTab1.png | |
| https://play.retro-mmo.com/res/images/ui/inventoryTab2.png | |
| https://play.retro-mmo.com/res/images/ui/logout.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment