Possible to change display options for different pages in gamebook?
adrao
15 Nov 2014, 22:00I am having one slight problem that might involve some coding, but not too sure how to proceed... essentially I am implementing a character creation system in a gamebook (thanks once again, Jay!) and due to this I want to change the display settings for different pages. For the character creation parts I want to "clear screen between each page", while for the rest of the gamebook I do not. Is there any way of doing this?
Thanks in advance for any help!
Thanks in advance for any help!
HegemonKhan
17 Nov 2014, 09:54not sure if this code (script) line works in GameBook:
http://docs.textadventures.co.uk/quest/ (site's main page)
http://docs.textadventures.co.uk/quest/ ... creen.html
example:
http://docs.textadventures.co.uk/quest/ ... /wait.html
----
try to read the outputed message, using this:
without the 'wait' Script (hehe)
------
in GUI~Editor (for the Text Adventure version, anyways):
run as script -> add a script -> output -> ClearScreen
http://docs.textadventures.co.uk/quest/ (site's main page)
http://docs.textadventures.co.uk/quest/ ... creen.html
example:
http://docs.textadventures.co.uk/quest/ ... /wait.html
msg ("What is your name?")
get input {
player.alias = result
msg ("Ah, so your name is " + player.alias + ".")
// without the 'wait' Script below, it would clear the screen way before you could ever read the outputted message above, lol.
wait {
ClearScreen
}
}
----
try to read the outputed message, using this:
without the 'wait' Script (hehe)
msg ("What is your name?")
get input {
player.alias = result
msg ("Ah, so your name is " + player.alias + ".")
ClearScreen
}
------
in GUI~Editor (for the Text Adventure version, anyways):
run as script -> add a script -> output -> ClearScreen