![]() |
Testing the map - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: Testing the map (/thread-9760.html) Pages:
1
2
|
Testing the map - Nathannnnr93 - 08-14-2011 How do i test this map i've made? i had a .map and a .hps but i dont know where i should put them to test them and how to do so. Thanks RE: Testing the map - Phoroneus - 08-14-2011 Here's the wiki article: http://wiki.frictionalgames.com/hpl2/amnesia/custom_story In short, you need to create a folder within the main Amnesia folder called "custom_stories" if one isn't already there. Inside that folder, create another folder with the name of the map. Inside that folder, create yet another folder called "maps". Place your .map and .hps files in "maps". Make sure to give your story a name and description by creating an "extra_english.lang" file and "custom_story_settings.cfg" file with this content: Code: <Main Once you've got that, make a "global.hps" file with the following content: Code: void OnGameStart() Now when you run the game, select Custom Story and yours should appear. RE: Testing the map - Nathannnnr93 - 08-14-2011 Thanks a bunch ![]() RE: Testing the map - Phoroneus - 08-14-2011 No problem. Your best bet is to use the wiki article, since that's guaranteed to be more descriptive than my overview. Best to have as much detail as possible for a first attempt. Good luck! ![]() RE: Testing the map - Nathannnnr93 - 08-14-2011 When i walk around all of the walls and floor is juttering, is that normal because the floor is just one big primitive so im not sure whats going on :S Everything looks like theyre juttering.. its strange. RE: Testing the map - Your Computer - 08-14-2011 (08-14-2011, 10:36 PM)Nathannnnr93 Wrote: When i walk around all of the walls and floor is juttering, is that normal because the floor is just one big primitive so im not sure whats going on :S Everything looks like theyre juttering.. its strange. When you stand still, not moving whatsoever, do they still "jitter"? Either way, it is probably due to having multiple objects at the very same position. RE: Testing the map - Phoroneus - 08-14-2011 That sounds like clipping. If you have more than one surface on the same plane, facing the same direction (like if walls overlap the ones next to them) the game can't decide which one to display, so it jumps back and forth. In the level editor, make sure the walls are perfectly flush with one another, or hide the joints using welder objects (which are solid and can be pulled out from the walls a bit. If you really like the way the walls look, but don't like the clipping, you can modify the position of the walls very slightly so that one of the clipping ones is just a tiny bit behind the other. Do this by selecting the wall you want to move and modifying its position (by something like 0.001) in the boxes on the right. Make sure the position you change is the one normal (perpendicular) to the wall's face. You can also fix it in a similar fashion by scaling the walls slightly (this works especially well on door frames and the like), by a similarly tiny amount. RE: Testing the map - Kman - 08-15-2011 um how do you make a global.hps file? RE: Testing the map - Nathannnnr93 - 08-15-2011 (08-15-2011, 04:08 AM)kman Wrote: um how do you make a global.hps file? Make a .txt file but rename .txt to .hps and just name it Global. Before you save it as that, add what you need to add inside it. (08-14-2011, 11:18 PM)Phoroneus Wrote: That sounds like clipping. If you have more than one surface on the same plane, facing the same direction (like if walls overlap the ones next to them) the game can't decide which one to display, so it jumps back and forth. In the level editor, make sure the walls are perfectly flush with one another, or hide the joints using welder objects (which are solid and can be pulled out from the walls a bit. No its not that :/ everything jutters, i think its the screen more than anything. No object is overlapping i deleted all the walls and started again but still the same.. Im coming to the conclusion that its just normal and i'll have to live with it ![]() RE: Testing the map - Phoroneus - 08-16-2011 (08-15-2011, 08:36 AM)Nathannnnr93 Wrote:(08-15-2011, 04:08 AM)kman Wrote: um how do you make a global.hps file? Does it jitter when you're playing the regular game? Might be a horizontal sync issue. It's not an insanity effect, is it? You're standing in a lit area, I hope. That'd be kind of an embarrassing explanation. ![]() |