legobassist Posted November 16, 2018 Share Posted November 16, 2018 Can anyone help me? All I get are dead links. It would be greatly appreciated Here is a link to what I am talking about: http://legoisland3.wikia.com/wiki/LEGO_Island_3_Wiki CyrodiilWarrior 1 Link to comment Share on other sites More sharing options...
lol username Posted November 16, 2018 Share Posted November 16, 2018 Final build: https://www.mediafire.com/file/tdgiqhga2g3qh04/LEGO+Island+3+B15.5.5+Win.zip Older build I'm not sure of the exact version of, but has some end-game content if you know how to access it (Tacku if you come across this topic please don't kill me lol it's been like nine years so I hope you don't really mind anymore): http://www.mediafire.com/file/1bq6pdn800hd4pa/Old+Mysterious+LEGO+Island+3+Build.zip Edit - since they're posted later in the thread now anyway, passwords for end-game content that can be used in the old build: ITZ A TRAP!!!!1 Ogelisle4745 rosesareredvioletsareblueinsovietrussiapoemwriteu Mr. Skeltal, legobassist, Quisoves Potoo and 3 others 4 1 1 Link to comment Share on other sites More sharing options...
legobassist Posted November 16, 2018 Author Share Posted November 16, 2018 21 minutes ago, jamesster said: Final build: https://www.mediafire.com/file/tdgiqhga2g3qh04/LEGO+Island+3+B15.5.5+Win.zip Older build I'm not sure of the exact version of, but has some end-game content if you know how to access it (Tacku if you come across this topic please don't kill me lol it's been like nine years so I hope you don't really mind anymore): http://www.mediafire.com/file/1bq6pdn800hd4pa/Old Mysterious LEGO Island 3 Build.zip Thank you so much! You've just saved this game from extinction! I went ahead and updated the wikipedia page (albeit, poorly) with your links. Once again, thank you! Link to comment Share on other sites More sharing options...
lol username Posted November 16, 2018 Share Posted November 16, 2018 54 minutes ago, legobassist said: Thank you so much! You've just saved this game from extinction! I went ahead and updated the wikipedia page (albeit, poorly) with your links. Once again, thank you! Looks like the second link had some spaces in it from however mediafire lets you copy links, fixed my post so it won't potentially break if copied elsewhere. Link to comment Share on other sites More sharing options...
legobassist Posted November 16, 2018 Author Share Posted November 16, 2018 It’s unfortunate both builds are broken. If I remember correctly the 14.4 build was considered stable. If I had the knowledge I would gladly continue work on the game Link to comment Share on other sites More sharing options...
FeebTube Posted November 16, 2018 Share Posted November 16, 2018 the greatest LEGO Island fan sequel of all time legobassist and Pixus 1 1 Link to comment Share on other sites More sharing options...
RobberBaron Posted January 29, 2019 Share Posted January 29, 2019 I have the Mac build "B15.2". I thought it used to work but now it won't even open Link to comment Share on other sites More sharing options...
lol username Posted January 29, 2019 Share Posted January 29, 2019 1 hour ago, RobberBaron said: I have the Mac build "B15.2". I thought it used to work but now it won't even open Could be a problem on your computer's end, or even if it is broken somehow (missing files etc) there's a good chance it could be repaired. A lot of files in Unity builds aren't actually game-specific, mostly just the scripting DLLs and level/resource files, the rest is largely generic. Link to comment Share on other sites More sharing options...
lol username Posted February 6, 2019 Share Posted February 6, 2019 Made some edits to the DLL with the main scripting of the game (the final build, 15.5.5) because why not: Changes: Fixed passwords for the Infocenter and its basement not working (the level names in the password related code were incorrect/outdated) Added passwords for City Hall ("Dusk") and Pirate Bay ("Yarr") Fixed main menu's exit game option not working (was trying to load a "Credits" scene not in the build/probably not finished; now simply quits the game) Since several levels start you in weird out of world locations, I added a quick and dirty noclip-ish movement system. Use UHJK to move around, and Y and I to go down/up. Hold left shift to slow down. Works while paused - the game lets you lock/unlock the camera by pressing L, even while paused, so I recommend pausing, pressing L to unlock the camera, then moving around. For levels that start you way off in the void, I recommend doing this as soon as they start so you can look around and navigate over to the playable areas before falling to your death. Unfortunately, Unity lacked Time.unscaledDeltaTime back then, so I couldn't think of a quick and easy way to make it framerate-independent and work while paused. So you'll move faster when there's less stuff on-screen; use left shift to slow down your movement if need be. Oh, and it works on the main menu too, but only while in the actual main menu part of it so it doesn't move around while you type passwords. Press F for fun. Also, here's the complete password-handling code (with fixes/additions in place): public void Password() { this.sounds(); if (this.textFieldString == "Super 2") { Application.LoadLevel("LEGO Island"); } if (this.textFieldString == "Anchovie") { Application.LoadLevel("Pepper's House"); } if (this.textFieldString == "Infomaniac") { Application.LoadLevel("Infocenter"); } if (this.textFieldString == "BricksterBot") { Application.LoadLevel("LEGO Island Destroyed"); } if (this.textFieldString == "City") { Application.LoadLevel("LEGO City"); } if (this.textFieldString == "Dusk") { Application.LoadLevel("City Hall"); } if (this.textFieldString == "Yarr") { Application.LoadLevel("Pirate Bay"); } if (this.textFieldString == "Eika") { Application.LoadLevel("Ninja Valley"); } if (this.textFieldString == "USS LI") { Application.LoadLevel("Basement"); } if (this.textFieldString == "USS LI2") { Application.LoadLevel("USS LEGO Island"); GUI_Game.totalProgress = 5; GUI_Game.legoCity = 1; } if (this.textFieldString == "Ogelisle4745") { Application.LoadLevel("Ogel Island"); } if (this.textFieldString == "ITZ A TRAP!!!!1") { Application.LoadLevel("Its a trap"); } if (this.textFieldString == "rosesareredvioletsareblueinsovietrussiapoemwriteu") { Application.LoadLevel("Finale"); } if (this.textFieldString == "Sparky") { Application.LoadLevel("Sandy Bay"); } if (this.textFieldString == "Rickroll") { Application.LoadLevel("Rickroll"); } if (this.textFieldString == "Captain Click") { Application.LoadLevel("Caverns"); } if (this.textFieldString == "Achu") { Application.LoadLevel("Adventure Island"); } if (this.textFieldString == "Apollo 11") { Application.LoadLevel("Cutscene Liftoff"); } if (this.textFieldString == "Pathfinder") { Application.LoadLevel("Mars"); } if (this.textFieldString == "thisissparta") { Application.LoadLevel("Battle for LEGO Island"); } if (this.textFieldString == "Friend to all animals") { Application.LoadLevel("Castle Island"); } } Note that some of these levels (endgame things) weren't included in the build and won't work, but you can see them in the older build posted earlier in the topic. Edit - Updated the DLL, redownload if you got it within the first hour-ish. legobassist, RobberBaron, FeebTube and 5 others 6 2 Link to comment Share on other sites More sharing options...
legobassist Posted February 10, 2019 Author Share Posted February 10, 2019 Thank you so much, I will try it out! I am glad to see this fan made sequel being revived! Link to comment Share on other sites More sharing options...
aidenpons Posted February 22, 2019 Share Posted February 22, 2019 On 2/10/2019 at 10:30 PM, legobassist said: I am glad to see this fan made sequel being revived! Uh, I don't think it's revived. I just think jamesster was perhaps slightly bored and wanted something that was actually functional? Don't expect anything further on this... FeebTube 1 Link to comment Share on other sites More sharing options...
FeebTube Posted February 23, 2019 Share Posted February 23, 2019 20 hours ago, aidenpons said: Uh, I don't think it's revived. I just think jamesster was perhaps slightly bored and wanted something that was actually functional? Don't expect anything further on this... I was playing it and posting screenies on the Project Island server. It made for interesting discussion, but I couldn't progress past the Info Center's elevator; @jamesster naturally decided to hack the DLL and create a patch for LEGO Island 3 Link to comment Share on other sites More sharing options...
lol username Posted February 28, 2019 Share Posted February 28, 2019 Found this on an old laptop today, Build 7 for PC (actually web player; Unity couldn't compile Windows builds from the Mac editor at that point IIRC). 3/10/2009. Figured I might as well archive it. https://www.mediafire.com/file/s5g79pb2l8rl512/Build_7_PC.zip/file FeebTube 1 Link to comment Share on other sites More sharing options...
lol username Posted October 30, 2021 Share Posted October 30, 2021 More old laptop stuff, dunno if this had already been reuploaded or not https://www.mediafire.com/file/pp4lu1czdqgo82q/LEGO+Island+3+B15.2+Windows.zip/file Edit - apparently it never downloaded properly and the zip is corrupt, oh well, make of it what you will Link to comment Share on other sites More sharing options...
lol username Posted November 11, 2021 Share Posted November 11, 2021 wew if someone actually cares lmk and I'll upload more I guess Link to comment Share on other sites More sharing options...
lol username Posted November 17, 2021 Share Posted November 17, 2021 ding https://archive.org/details/lego-island-3/ Link to comment Share on other sites More sharing options...
Recommended Posts