Frictional Games Forum (read-only)
[Updated thread] Need help - 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: [Updated thread] Need help (/thread-26941.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


RE: [Updated thread] Need help - Catalyst - 03-22-2015

Hey guys, does anybody know how to change actors voice ,sfx sound, for example to create that feeling when an girl, woman is main hero (like Justine)? I got some fancy sounds that should do the trick.


RE: [Updated thread] Need help - A.M Team - 03-22-2015

Replace your main_init with Amnesia Justine's one and it should work. Just make sure to save your original config somewhere safe.

I think this is only used for a FC but I don't know. Give it a try...


RE: [Updated thread] Need help - Catalyst - 03-22-2015

(03-22-2015, 08:43 PM)TheDoctorPoo Wrote: Replace your main_init with Amnesia Justine's one and it should work. Just make sure to save your original config somewhere safe.

I think this is only used for a FC but I don't know. Give it a try...

Maybe some "total conversion" stuff can help, from hpl2wiki, about parameters that should happen on game start, wait it's a idea Smile


RE: [Updated thread] Need help - Mudbill - 03-22-2015

It would be difficult to replace the player sound effects without a mod. I suggest doing an IFC. You can edit those sounds in whatever places justine already does it.


RE: [Updated thread] Need help - Catalyst - 03-23-2015

(03-22-2015, 09:20 PM)Mudbill Wrote: It would be difficult to replace the player sound effects without a mod. I suggest doing an IFC. You can edit those sounds in whatever places justine already does it.

Ok, please give me a suggestion, which files I need? Thank you


RE: [Updated thread] Need help - Mudbill - 03-23-2015

Edit your mod's game.cfg. Check out this wiki article:

https://wiki.frictionalgames.com/hpl2/amnesia/config/game

You can do ctrl-F and find anything regarding "Sound" to find what you're looking for.


RE: [Updated thread] Need help - Catalyst - 03-23-2015

(03-23-2015, 11:18 AM)Mudbill Wrote: Edit your mod's game.cfg. Check out this wiki article:

https://wiki.frictionalgames.com/hpl2/amnesia/config/game

You can do ctrl-F and find anything regarding "Sound" to find what you're looking for.

Thank you, your reply is very useful for me Smile


RE: [Updated thread] Need help - Catalyst - 03-23-2015

My Amnesia is working bad, slower and slower, after I wrote new script.

void AmountOfHealth(string &in asTimer)
{
if(GetPlayerHealth() < 51.0f)
{
PlaySoundAtEntity("Player", "woman_breath.snt", "Player", 0, false);
AddTimer("", 3, "AmountOfHealth");
FadeSepiaColorTo(1,1);
}
if(GetPlayerHealth() > 51.0f)
{
AddTimer("", 3, "AmountOfHealth");
FadeSepiaColorTo(0,1);
}
if(GetPlayerSanity() < 45.0f)
{
AddTimer("", 3, "AmountOfHealth");
PlaySoundAtEntity("Player", "insanity_whispers.snt", "Player", 0, false);
}
if(GetPlayerSanity() > 45.0f)
{
AddTimer("", 3, "AmountOfHealth");
}
}

This script can slow down the PC productivity? I never seen a problem like this...

Memory Used 2.4 GB/ 4 GB Ram CPU Load from 20% to 70%

PS : Right now I found a trojan downloader in my pc, neutralised it, but problem is still here. Testing my mod, after 10 sec of game, game stops, then goes, and then freezes "Amnesia has stopped from working" Sad


RE: [Updated thread] Need help - Mudbill - 03-23-2015

You're creating an endless timer loop, meaning the longer it runs, the more intensive it gets because it duplicates every time. You need to fix that script.


RE: [Updated thread] Need help - Straxedix - 03-24-2015

Well bro you can't just like that toy with the script... Can you see how many "GetPlayerHealth" you have ? All that gives screen boost... i can't imagine that replying over and over for low computer users (like me) it could force PC to stop... That kills FPS bro i think 1 is enough.