Frictional Games Forum (read-only)
Note "next page" - 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: Note "next page" (/thread-20329.html)



Note "next page" - tonitoni1998 - 02-14-2013

how can i add a second page to a note. something like [br] . y first thought was [np] but it didnt work Tongue where can i find out stuff like this? are there other commands?


RE: Note "next page" - FlawlessHappiness - 02-14-2013

[br] = break = newline.

That's the only command i know...


RE: Note "next page" - tonitoni1998 - 02-14-2013

(02-14-2013, 05:26 PM)BeeKayK Wrote: [br] = break = newline.

That's the only command i know...

is there some way how to do it?


RE: Note "next page" - MulleDK19 - 02-14-2013

The game handles pages. If your note is too long, the game will make multiple pages.
If you want to force more pages without filling each one out, you'll have to put enough line breaks ([br]) to force the game to make a new page.

eg.

Page 1[br][br][br]Page 2.

Then enough [br] to push the "Page 2" text onto page 2.


RE: Note "next page" - Statyk - 02-14-2013

I believe the code is [new_page]


RE: Note "next page" - MulleDK19 - 02-14-2013

(02-14-2013, 06:00 PM)Statyk Wrote: I believe the code is [new_page]

Nope.


RE: Note "next page" - Your Computer - 02-14-2013

The code is
Code:
[br][new_page][br]

IIRC, without the line breaks the game won't do anything.


RE: Note "next page" - MulleDK19 - 02-14-2013

(02-14-2013, 07:01 PM)Your Computer Wrote: The code is
Code:
[br][new_page][br]

IIRC, without the line breaks the game won't do anything.

Hmm, you're right. [br][new_page][br] works.