Frictional Games Forum (read-only)
How to get a note without having to pick it up? - 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: How to get a note without having to pick it up? (/thread-16005.html)



How to get a note without having to pick it up? - GetHimNotMe - 06-09-2012

Basically what it says in the title.


RE: How to get a note without having to pick it up? - MaZiCUT - 06-09-2012

I'm guessing that you need to do basicly the same thing only that it's alredy in your journal.














RE: How to get a note without having to pick it up? - Ermu - 06-09-2012

AddNote(string& asNameAndTextEntry, string& asImage);


asNameAndTextEntry - entries in the .lang file. Must end with _Name and _Text and be in category “Journal”!
asImage - the background image to be used




Try that, should work.


RE: How to get a note without having to pick it up? - GetHimNotMe - 06-09-2012

(06-09-2012, 09:11 PM)Ermu Wrote: AddNote(string& asNameAndTextEntry, string& asImage);


asNameAndTextEntry - entries in the .lang file. Must end with _Name and _Text and be in category “Journal”!
asImage - the background image to be used




Try that, should work.
Looks like exactly what I needed thanks!