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


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Amnesia Note Creation Issue
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#1
Tongue  Amnesia Note Creation Issue

When I create a note with the same name Test01 or any other note it doesn't show anything respectful to its Entry Name.
I've added the EntityCallPickNote and named the note text Test01.
I cannot still figure out why the text or name will not show up in-game.

Also, Yes this is another Pewdiepie map in production but I fear it won't go anywhere without the use of notes/journals/momentos.

The momentos are not appearing as well and neither are objects that have been named in the extra_english.lang file.

If anyone has any idea what the problem could be then help would be appreciated.


Attached Files
.jpg   Issue1.JPG (Size: 58.13 KB / Downloads: 102)
.jpg   Issue2.JPG (Size: 62.88 KB / Downloads: 90)
.jpg   Issue3.JPG (Size: 61.74 KB / Downloads: 98)
.jpg   Issue4.JPG (Size: 89.88 KB / Downloads: 92)
02-23-2013, 03:08 PM
Find
NaxEla Offline
Senior Member

Posts: 415
Threads: 5
Joined: Dec 2012
Reputation: 28
#2
RE: Amnesia Note Creation Issue

For a note to work, you don't need to write anything where it says "CallbackFunc". Your problem is that you don't have </CATEGORY> to close the Journal category. Your .lang should look like this:

<LANGUAGE>
    <CATEGORY Name="CustomStoryMain">
        <Entry Name="Description">A test description.</Entry>
    </CATEGORY>

    <CATEGORY Name="Journal">
        <Entry Name="Note_Test01_Name">Important note</Entry>
        <Entry Name="Note_Test01_Text">Important note</Entry>
    </CATEGORY>
</LANGUAGE>

Btw, this should be in the Custom Stories Development Support forum.

In Ruins [WIP]
02-23-2013, 10:20 PM
Find
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#3
RE: Amnesia Note Creation Issue

Le moved.
02-24-2013, 12:53 AM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#4
RE: Amnesia Note Creation Issue

Ahhhh. I just found out what is wrong. Don't you need
<RESOURCES>
  </RESOURCES>
after the
<LANGUAGE>
sign?
Nonetheless, here is the full script.
<LANGUAGE>
<RESOURCES>
  </RESOURCES>
    <CATEGORY Name="CustomStoryMain">
        <Entry Name="Description">A test description.</Entry>
    </CATEGORY>
<CATEGORY Name="Journal">
        <Entry Name="Note_Test01_Name">Important note</Entry>
        <Entry Name="Note_Test01_Text">Important note</Entry>
    </CATEGORY>
</LANGUAGE>

"Veni, vidi, vici."
"I came, I saw, I conquered."
(This post was last modified: 02-24-2013, 04:32 AM by PutraenusAlivius.)
02-24-2013, 04:31 AM
Find
NaxEla Offline
Senior Member

Posts: 415
Threads: 5
Joined: Dec 2012
Reputation: 28
#5
RE: Amnesia Note Creation Issue

(02-24-2013, 04:31 AM)JustAnotherPlayer Wrote: Ahhhh. I just found out what is wrong. Don't you need
<RESOURCES>
  </RESOURCES>
after the
<LANGUAGE>
sign?
Nonetheless, here is the full script.
<LANGUAGE>
<RESOURCES>
  </RESOURCES>
    <CATEGORY Name="CustomStoryMain">
        <Entry Name="Description">A test description.</Entry>
    </CATEGORY>
<CATEGORY Name="Journal">
        <Entry Name="Note_Test01_Name">Important note</Entry>
        <Entry Name="Note_Test01_Text">Important note</Entry>
    </CATEGORY>
</LANGUAGE>

Well, you don't need it, but it's not going to hurt anything if it's in there. Regardless, the problem was clearly that he was missing a </CATEGORY>.

In Ruins [WIP]
02-24-2013, 05:35 AM
Find
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#6
RE: Amnesia Note Creation Issue

(02-24-2013, 05:35 AM)NaxEla Wrote:
(02-24-2013, 04:31 AM)JustAnotherPlayer Wrote: Ahhhh. I just found out what is wrong. Don't you need
<RESOURCES>
  </RESOURCES>
after the
<LANGUAGE>
sign?
Nonetheless, here is the full script.
<LANGUAGE>
<RESOURCES>
  </RESOURCES>
    <CATEGORY Name="CustomStoryMain">
        <Entry Name="Description">A test description.</Entry>
    </CATEGORY>
<CATEGORY Name="Journal">
        <Entry Name="Note_Test01_Name">Important note</Entry>
        <Entry Name="Note_Test01_Text">Important note</Entry>
    </CATEGORY>
</LANGUAGE>

Well, you don't need it, but it's not going to hurt anything if it's in there. Regardless, the problem was clearly that he was missing a </CATEGORY>.

So I fixed the </CATEGORY> but its still not showing up >.>
02-24-2013, 01:13 PM
Find




Users browsing this thread: 1 Guest(s)