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
Memento doesn't show up?
Amnesiaplayer Offline
Senior Member

Posts: 539
Threads: 105
Joined: Jun 2014
Reputation: 0
#1
Memento doesn't show up?

Hello...

i have a problem... i'm starting with new and Clear Custom Story!
i want to make "memenot"if the player pick ups a Note

name of the note (with callback) = note
so everything if i play and pickup the note... memento is EMPTY.... only- ...

note thing in LANG file is
<Entry Name="Quest_note_Text">Test</Entry>

and the HPS is

void note(string &in asEntity, string &in type)
{
AddQuest("note", "pickupnote");
}

Please can someone help me ?
06-17-2014, 01:40 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#2
RE: Memento doesn't show up?

Replace pickupnote in your script with just note.
The first string is the internal name, and the second string is the entry name.

06-17-2014, 01:44 PM
Find
Amnesiaplayer Offline
Senior Member

Posts: 539
Threads: 105
Joined: Jun 2014
Reputation: 0
#3
RE: Memento doesn't show up?

i already did it! it doesn't work Sad
06-17-2014, 01:45 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#4
RE: Memento doesn't show up?

Can you show me your whole lang file?

06-17-2014, 01:59 PM
Find
Amnesiaplayer Offline
Senior Member

Posts: 539
Threads: 105
Joined: Jun 2014
Reputation: 0
#5
RE: Memento doesn't show up?

<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">.</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_sleutel">Sleutel om naar buiten te gaan!</Entry>
<Entry Name="ItemName_sleutel">Sleutel</Entry>
</CATEGORY>
<Entry Name="Quest_note_Text">Test</Entry>

<CATEGORY Name="Journal">
<Entry Name="Note_note_Name">(test)</Entry>
<Entry Name="Note_note_Text">(test)</Entry>
</CATEGORY>
</LANGUAGE>

something like this...
06-17-2014, 02:02 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#6
RE: Memento doesn't show up?

You must move the Quest entry down so that it's inside the Journal category.

PHP Code: (Select All)
<CATEGORY Name="Journal">
<
Entry Name="Quest_note_Text">Test</Entry>

<
Entry Name="Note_note_Name">(test)</Entry>
<
Entry Name="Note_note_Text">(test)</Entry>
</
CATEGORY

06-17-2014, 02:24 PM
Find
Radical Batz Offline
Posting Freak

Posts: 953
Threads: 145
Joined: Dec 2013
Reputation: 25
#7
RE: Memento doesn't show up?

(06-17-2014, 02:02 PM)Amnesiaplayer Wrote: <LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">.</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_sleutel">Sleutel om naar buiten te gaan!</Entry>
<Entry Name="ItemName_sleutel">Sleutel</Entry>
</CATEGORY>
<Entry Name="Quest_note_Text">Test</Entry>

<CATEGORY Name="Journal">
<Entry Name="Note_note_Name">(test)</Entry>
<Entry Name="Note_note_Text">(test)</Entry>
</CATEGORY>
</LANGUAGE>

something like this...

Where's the memento quest entries?

06-17-2014, 02:24 PM
Find
Amnesiaplayer Offline
Senior Member

Posts: 539
Threads: 105
Joined: Jun 2014
Reputation: 0
#8
RE: Memento doesn't show up?

Thanks! it worked!!

Where's the memento quest entries?
[/quote]

it works already Big Grin
(This post was last modified: 06-17-2014, 02:26 PM by Amnesiaplayer.)
06-17-2014, 02:25 PM
Find




Users browsing this thread: 1 Guest(s)