Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 4 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Compiling a List of Problems
Kim Offline
Junior Member

Posts: 16
Threads: 0
Joined: Sep 2010
Reputation: 0
#43
Solved: 8 Years, 1 Month ago RE: Compiling a List of Problems

One splash animation from a lurker were rendered in mid-air for some reason in the first lever room.

Brooms, and other items I guess, can get stuck in the corners of cabinets with half of it on the inside and the other half on the outside.

Taking screenshots appears to not work under Linux? I have looked under both the main game folder and ~/.frictionalgames/Amnesia/Main and their subfolders.

(09-15-2010, 02:49 AM)Vicious Wrote: My assumption is still the last lever to be moved for the puzzle has to be one set to either straight up or down.
Ah, I get what you mean now.

I'm currently replaying and your assumption seems to be correct. Looking at the map script (13_machine_room.hps:225) no check is done when a lever is set to a neutral position. I guess this might be the intended behaviour. Undecided

By the by, there are four valid solutions.

(09-10-2010, 06:59 PM)Spiegelman Wrote: * Confirmed: Entrance Hall/Laboratory - After using the acid on the organic tissue blocking the refinery, some players have tried returning to the Laboratory to refill their pots (obviously not intended to refill); however, when returning to the Main Hall, the organic tissue will have respawned and left the player without a means of dissolving it again.

* May be intended: After moving from one map to another and back, all previously moved items and doors are returning to their default position/state.

* Confirmed: Cistern - The valve at the farthest end of the Cistern can be turned twice instead of having to turn all three valves to lower the water.

Quote:* May be intended: Cistern - If the player leaves the map after the Kaernk and red tissue spawns, then re-enters the map, the Kaernk and tissue will both be gone.

Aren't all these caused by the same problem? The state of an entity only being temporarily saved.

It's late and I should've really gone to sleep some two hours ago, so this is untested. But the Entrance Hall tissue problem should be easily solved by adding the following statement at the end of Amnesia/maps/main/ch01/02_entrance_hall.hps inside the void OnEnter() function on its own line right before //----PLAYER INIT----//.
    if (QuestIsCompleted("02Web")) {
        SetPropHealth("web_1", 0);
    }

You would probably have to rename 02_entrance_hall.map_cache for the change to take effect and don't forget to make backups!

The Cistern should be fixable by using LocalVarString if there's someone interested in testing that.

Quote:* Confirmed: Archives - Near the map room there is a breakable wall and when you click on the wall it says "Fragile, but not breakable by hand." If a player clicks the wall repeatedly, it will break by hand.

The window is also breakable in the same way. So probably some quirk with that type of object or intended behaviour to not risk the player ending up stuck?
09-20-2010, 03:02 AM
Find


Messages In This Thread
Compiling a List of Problems - by Spiegelman - 09-10-2010, 06:59 PM
RE: Compiling a list of bugs/glitches - by SarS - 09-11-2010, 06:45 PM
RE: Compiling a list of bugs/glitches - by Jinix - 09-21-2010, 07:20 PM
RE: Compiling a list of bugs/glitches - by Rosto - 09-11-2010, 07:03 PM
RE: Compiling a List *SPOILERS* - by Spiegelman - 09-12-2010, 10:06 PM
RE: Compiling a List of Problems - by Spiegelman - 09-13-2010, 10:50 PM
RE: Compiling a List of Problems - by thiz - 09-14-2010, 01:13 AM
RE: Compiling a List of Problems - by Spiegelman - 09-14-2010, 02:52 AM
RE: Compiling a List of Problems - by Vicious - 09-14-2010, 04:22 AM
RE: Compiling a List of Problems - by Spiegelman - 09-14-2010, 03:39 PM
RE: Compiling a List of Problems - by Vicious - 09-14-2010, 11:38 PM
RE: Compiling a List of Problems - by Kim - 09-15-2010, 01:17 AM
RE: Compiling a List of Problems - by Atlas - 09-15-2010, 02:31 AM
RE: Compiling a List of Problems - by Mman235 - 09-15-2010, 02:32 AM
RE: Compiling a List of Problems - by Vicious - 09-15-2010, 02:49 AM
RE: Compiling a List of Problems - by Spiegelman - 09-15-2010, 04:33 AM
RE: Compiling a List of Problems - by Vicious - 09-17-2010, 01:30 AM
RE: Compiling a List of Problems - by Spiegelman - 09-17-2010, 08:04 AM
RE: Compiling a List of Problems - by Mr. Mock - 09-19-2010, 08:53 AM
RE: Compiling a List of Problems - by Mr. Mock - 09-19-2010, 08:50 PM
RE: Compiling a List of Problems - by udm - 09-19-2010, 09:16 AM
RE: Compiling a List of Problems - by Spiegelman - 09-19-2010, 07:16 PM
RE: Compiling a List of Problems - by Unhandled - 09-19-2010, 07:59 PM
RE: Compiling a List of Problems - by DON3k - 09-19-2010, 08:01 PM
RE: Compiling a List of Problems - by Spiegelman - 09-19-2010, 08:36 PM
RE: Compiling a List of Problems - by tonewww - 09-19-2010, 08:08 PM
RE: Compiling a List of Problems - by Daiyuki - 09-20-2010, 12:10 AM
RE: Compiling a List of Problems - by Spiegelman - 09-20-2010, 01:40 AM
RE: Compiling a List of Problems - by Daiyuki - 09-20-2010, 02:01 AM
RE: Compiling a List of Problems - by Kim - 09-20-2010, 03:02 AM
RE: Compiling a List of Problems - by Spiegelman - 09-20-2010, 05:14 AM
RE: Compiling a List of Problems - by Kim - 09-20-2010, 06:08 PM
RE: Compiling a List of Problems - by Spiegelman - 09-21-2010, 05:58 AM
RE: Compiling a List of Problems - by Kim - 09-23-2010, 04:40 PM
RE: Compiling a List of Problems - by jens - 09-21-2010, 07:53 AM
RE: Compiling a List of Problems - by THWIP71 - 09-25-2010, 08:11 AM
RE: Compiling a List of Problems - by Spiegelman - 09-25-2010, 04:11 PM
RE: Compiling a List of Problems - by THWIP71 - 09-25-2010, 11:28 PM
RE: Compiling a List of Problems - by Tanshaydar - 09-25-2010, 11:32 PM
RE: Compiling a List of Problems - by Twin - 09-26-2010, 12:47 AM
RE: Compiling a List of Problems - by Spiegelman - 09-26-2010, 02:53 AM
RE: Compiling a List of Problems - by THWIP71 - 09-26-2010, 04:49 AM
RE: Compiling a List of Problems - by Spiegelman - 09-27-2010, 01:28 AM
RE: Compiling a List of Problems - by THWIP71 - 09-27-2010, 08:53 AM
RE: Compiling a List of Problems - by Twin - 09-27-2010, 03:11 AM
RE: Compiling a List of Problems - by Spiegelman - 09-27-2010, 04:58 AM
RE: Compiling a List of Problems - by Kim - 09-29-2010, 07:43 PM
RE: Compiling a List of Problems - by Spiegelman - 09-29-2010, 09:06 PM
RE: Compiling a List of Problems - by Kim - 10-09-2010, 10:37 PM
RE: Compiling a List of Problems - by Spiegelman - 09-30-2010, 07:59 AM
RE: Compiling a List of Problems - by bugmenot - 10-08-2010, 12:46 AM
RE: Compiling a List of Problems - by Spiegelman - 10-08-2010, 04:55 PM
RE: Compiling a List of Problems - by bugmenot - 10-08-2010, 08:21 PM
RE: Compiling a List of Problems - by Spiegelman - 10-08-2010, 09:16 PM
RE: Compiling a List of Problems - by bugmenot - 10-09-2010, 05:52 PM
RE: Compiling a List of Problems - by Batman55 - 10-10-2010, 04:48 AM
RE: Compiling a List of Problems - by Mike74Negs - 10-10-2010, 05:08 PM
RE: Compiling a List of Problems - by Spiegelman - 10-10-2010, 07:27 PM
RE: Compiling a List of Problems - by Batman55 - 10-11-2010, 06:57 AM
RE: Compiling a List of Problems - by Kim - 10-15-2010, 12:10 AM
RE: Compiling a List of Problems - by Spiegelman - 10-11-2010, 07:22 AM
RE: Compiling a List of Problems - by bugmenot - 10-11-2010, 11:26 AM
RE: Compiling a List of Problems - by Spiegelman - 11-03-2010, 04:17 PM
RE: Compiling a List of Problems - by Thinker - 11-19-2012, 08:12 AM
RE: Compiling a List of Problems - by plutomaniac - 11-20-2012, 10:18 AM



Users browsing this thread: 1 Guest(s)