Solarus-Games English Forum

Solarus => Development => Topic started by: Dragon_noir on May 28, 2015, 07:43:49 PM

Title: NPC asking question
Post by: Dragon_noir on May 28, 2015, 07:43:49 PM
I can't get my dialog to show arrows to ask a question.

I thought I had to use "$?" in front of the text in the dialog.dat file.
Title: Re: NPC asking question
Post by: Diarandor on May 28, 2015, 11:25:31 PM
Have you tried something like this?

-- Save game dialog
dialog{
  id = "pause.save",
  question = true,
  text = [[
Is your desire to save the game?
Yes
No
]]
}
Title: Re: NPC asking question
Post by: Dragon_noir on May 29, 2015, 06:42:35 PM
Yes i got it working now. Thanks.