Gamebook exit question

crystalwizard
31 Jan 2017, 04:34

by default, the links between pages all have a paragraph break between them. I need to change that so there's no blank lines. Where's the code for that found?


Pertex
31 Jan 2017, 11:49

This is done in the function DoPage in GamebookCore.aslx. You can import and edit this function, but it's a bit risky. It's the main function to build pages.


crystalwizard
31 Jan 2017, 13:17

What's the comment character?


hegemonkhan
31 Jan 2017, 17:31

for a single line, it's:

// your comments

and for a block:

/* your comments */

at least with Text Adventure, but I doubt it's different in the Game Book


crystalwizard
01 Feb 2017, 02:18

thanks. Worked. :)