by Xeotroid » Sun Jun 15, 2014 5:54 am
This gets on my nerves sometimes, that every dialogue page has automatically included universal dialogue-quitting line, like "Thanks, bye!" or "See you later!". Is it possible to add some kind of a flag to make remove it? It'd be fine even if it was per-page. It could look like this:
Code: Select all
page
{
name = "my actor";
dialog = "Hello, what can I do for you?";
noquit // <- THIS THING!
choice
{
//choice code
}
}
This gets on my nerves sometimes, that every dialogue page has automatically included universal dialogue-quitting line, like "Thanks, bye!" or "See you later!". Is it possible to add some kind of a flag to make remove it? It'd be fine even if it was per-page. It could look like this:
[code]
page
{
name = "my actor";
dialog = "Hello, what can I do for you?";
noquit // <- THIS THING!
choice
{
//choice code
}
}
[/code]