Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/10/2019 in Posts

  1. lol username

    Im looking for a download to the Lego Island 3 fangame

    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.
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.