![]() |
hps file not loading on 3rd "level" - 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: hps file not loading on 3rd "level" (/thread-19686.html) |
hps file not loading on 3rd "level" - Jeeper - 12-26-2012 Hello there! I have a very annoying issue for the last couple of days, the hps file does not seem to load at all in my 3rd level. I have tried recreating everything multiple times, renaming and trying every possible thing that has popped into my head. The wierd thing is that i have done exactly the same thing as i did for my second level. In the maps folder it looks like this: 01_mapname.map 01_mapname.hps 02_mapname.map 02_mapname.hps 03_mapname.map 03_mapname.hps No scripts work on the 3rd level. I have no idea what is going on, anyone else had this issue and how did you solve it? The map still start loads and does not give me any error. Thanks a lot! RE: hps file not loading on 3rd "level" - The chaser - 12-26-2012 Please post the original name (and check them so they match). If there are .map_cache delete them. RE: hps file not loading on 3rd "level" - Jeeper - 12-26-2012 Here is a picture. http://i46.tinypic.com/160sjh3.png Red means not working. Green working. RE: hps file not loading on 3rd "level" - The chaser - 12-26-2012 By what I can see there aren't map caches. And, the scripts and maps are named the same. Weird thing. Just sayin', what happens? It crashes, it just doesn't work in-game? RE: hps file not loading on 3rd "level" - Jeeper - 12-26-2012 (12-26-2012, 07:15 PM)The chaser Wrote: By what I can see there aren't map caches. And, the scripts and maps are named the same. Weird thing. Just sayin', what happens? It crashes, it just doesn't work in-game? It does not crash, it does not give any error messange. But no scripts work. And after a while i just wondered if i was being stupid and made all scripts wrong so i made multiple super simple test scripts. Here is an example of one such script (100 times checked and copy + paste in editor so all names match) void OnStart() { AddEntityCollideCallback("Player","RetardArea","RetardTest",true,1); } void RetardTest(string &in asParent, string &in asChild, int alState) { PlaySoundAtEntity("", "amb_idle_whimp.snt", "Player", 0.1, false); } Edit; For a while i thought it was due to me changing the map via script and not level door. But i later tried to change to one map that i knew worked previously with said script. And this map still worked. RE: hps file not loading on 3rd "level" - DnALANGE - 12-26-2012 (12-26-2012, 07:42 PM)Jeeper Wrote:(12-26-2012, 07:15 PM)The chaser Wrote: By what I can see there aren't map caches. And, the scripts and maps are named the same. Weird thing. Just sayin', what happens? It crashes, it just doesn't work in-game? - Might work.. don't know for sure.. try 0.1f I had something like that in one of my script once.. RE: hps file not loading on 3rd "level" - Jeeper - 12-27-2012 (12-26-2012, 11:59 PM)dnalange Wrote:(12-26-2012, 07:42 PM)Jeeper Wrote:(12-26-2012, 07:15 PM)The chaser Wrote: By what I can see there aren't map caches. And, the scripts and maps are named the same. Weird thing. Just sayin', what happens? It crashes, it just doesn't work in-game? Tried that and multiple other simple scripts, its not the script that doesnt work its that the game doesnt load the next Hps file. For what reason i do not know but it is getting on my nerves ![]() |