[SCRIPT] There are no texts! - 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: [SCRIPT] There are no texts! (/thread-29254.html) Pages:
1
2
|
There are no texts! - Shylia - 01-08-2015 Why can't I see text and descriptions? I've tried adding Text to objects and doors like, if you look at a door it can say "Locked" on the screen. But no matter what I do, not matter how correct it is, it will not work for me. I can't read notes, I can't see descriptions, I can't see text on doors. my LANG file Spoiler below!
And my HPS file. Spoiler below!
This thing is driving me nuts! RE: There are no texts! - Mudbill - 01-08-2015 Is your lang and/or script file properly formatted? I see no obvious errors, so I can only assume the issue is outside the contents. Have you enabled all extensions and did you use a proper coding program to create the file? RE: There are no texts! - Shylia - 01-08-2015 (01-08-2015, 09:03 PM)Mudbill Wrote: Is your lang and/or script file properly formatted? I see no obvious errors, so I can only assume the issue is outside the contents. Have you enabled all extensions and did you use a proper coding program to create the file? The CS description works perfectly, but not in-game. Why?! RE: There are no texts! - Lizard - 01-09-2015 As I understand, your problem is you dont have any text on your notes and no text is showing when you look at doors, For what I can see in your lang file, you dont have it set up to show anything. here is a few steps/things you can try. 1. To make a door show where it leads to. If you click on a door and goes to its entity tab there is something called TextEntry, write something in there ex. Door1. Then go you lang file and add this <CATEGORY Name="Levels"> <Entry Name="Door1">Hallway</Entry> </CATEGORY> Now the door will show that it leads to the hallways 2. To get a door to tell you that it is locked. At the bottom of the doors entity tab there is something called LockedTextCat and LockedTextEntry. they are used to show a message when you click on a locked door, ex. Write LockedDoors in LockedTextCat and Door1 in LockedTextEntry. Then go to you lang file and add this <CATEGORY Name="LockedDoors"> <Entry Name="Door1">Locked</Entry> </CATEGORY> Now the door will tell you that it is locked when you click on it NOTES: Click on a note and go to its entity tab and at bottom you see something called NoteText. ex. write Note1 in the NoteText box and then go to your lang file and add this <CATEGORY Name="Journal"> <Entry Name="Note_Note1_Name">Name of the when the player reads the note</Entry> ex Note From Creator <Entry Name="Note_Note1_Text">What the note should say</Entry> ex Hope you enjoy my CS</Entry> </CATEGORY> Hope you can make use for this RE: There are no texts! - Shylia - 01-09-2015 (01-09-2015, 01:23 PM)ZereboO Wrote: As I understand, your problem is you dont have any text on your notes and no text is showing when you look at doors, That is just it, I have done all of this! I followed a guide on how to do it, everything is exactly as the tutorial, but no it doesn't work! I am so confused, you're all saying it should work but it doesnt! RE: There are no texts! - Mudbill - 01-09-2015 Hmm, how about this then. Download another custom story, then steal their extra_english.lang (that I assume is working) and then edit it carefully. If possible, just place it in your story, then go to one of their notes and JUST edit the text and name of the note. Try to see if that works. RE: There are no texts! - Shylia - 01-09-2015 (01-09-2015, 03:56 PM)Mudbill Wrote: Hmm, how about this then. Download another custom story, then steal their extra_english.lang (that I assume is working) and then edit it carefully. If possible, just place it in your story, then go to one of their notes and JUST edit the text and name of the note. Try to see if that works. That didn't work either, I don't even get the "You must find a lantern first" message when I try to use the Lantern. My entire project has halted because of this, it's driving me Arkenstone mad. RE: There are no texts! - Daemian - 01-09-2015 That lantern message comes from your main language file. It's a hint. I don't know what happened there, but try these options below to solve your problem:
I can't think of anything else for now. Good luck with that. Hope that helps. RE: There are no texts! - Mudbill - 01-09-2015 If the lantern hint doesn't even appear, then yes, I would think perhaps your english.lang might be corrupt. That might be why the extra one isn't working, because I think it only adds to the main one. RE: There are no texts! - Shylia - 01-10-2015 (01-09-2015, 07:18 PM)Mudbill Wrote: If the lantern hint doesn't even appear, then yes, I would think perhaps your english.lang might be corrupt. That might be why the extra one isn't working, because I think it only adds to the main one. No worries, it works now |