I played someone else's Mod not too long ago and sent them a PM about how I was able to walk around in the dark after going through their Portal. It was kinda fun actually; thought it was another puzzleEleven Warrior wrote:Hi all I don't know if anyone else has found this but it's very funny. When you walk through the Portal it will take you to the Script Entity Location.
Thxs to Issac for helping me with this script, although the move bit is strange and was hoping AH would be able to help out here.
1 - Put this code into script entity name does not matter. place in it one square of your choice (NOT WALL) floor.
2 - Put a portal on the map named: portal_1.
3 - Walk through the portal, when the fade finishes, press the ( h ) key and move in any direction. Now we are on the Moon walking Slow Mo lol.
Code: Select all
portal_1:removeComponent("portal") portal_1:createComponent("Portal") :addConnector("onArrival", self.go.id, "arrivalHook"); function arrivalHook() party:setPosition(self.go.x, self.go.y, self.go.facing, self.go.elevation, self.go.level) GameMode.fadeIn(0xffffff,1) --Fade in from white, over a 1 second duration. GameMode.setGameFlag("DisableMovement",false) --added this Issac lol-- end
