Well, I'm not sure if it would be considered a bug, but it seems to be a problem for me.
I'm using the standard tutorial that comes with the download of the AGS editor. I fixed some of the problems I already had (the merchant not even appearing made me feel pretty stupid) but now I'm at a weird point.
The tutorial asks for me to have the merchant and the character start a dialog. They introduce themselves, and the first option (Who are you?) and the third option (Bye, see you later.) both work, but the second option (Tell me more about your wares.) begins the first two lines, but when the choice between items is meant to come up, nothing appears and I am unable to get out of the dialog.
I know it's kind of really bad looking for me to have problems with the tutorial, but I'm almost completely positive I'm doing the dialogue correctly, copying what's in the screenshots in the tutorial. If the tutorial is still correct, than maybe it's not in the dialogue.
The two I have for dialogue are:
// Dialog script file
@S // Dialog startup entry point
EGO: "Greetings!"
MERCHANT: "Hello there!"
return
@1
MERCHANT: My name is Derek, and I'm a local merchant.
MERCHANT: I can sell you all sorts of things.
return
@2
MERCHANT: I specialize in selling various random items.
MERCHANT: My jackets and fake eyeballs are popular.
goto-dialog dWares
@3
MERCHANT: Do pop by again sometime.
stop
and
// Dialog script file
@S // Dialog startup entry point
return
@1
MERCHANT: A fine leather jacket - for you, just $200!
EGO: That's a bit expensive, isn't it?
MERCHANT: Not for this, Sir. It's hand-made by my wife.
EGO: Oh, ok then.
return
@2
MERCHANT: A perfect joke item, the eyeball is just $3.99
return
@3
MERCHANT: Very well.
goto-previous
I only get up to "My jackets and fake eyeballs are popular."
If there's something else I should post, say so. I'm really trying to wrap my head around this.
I'm using the standard tutorial that comes with the download of the AGS editor. I fixed some of the problems I already had (the merchant not even appearing made me feel pretty stupid) but now I'm at a weird point.
The tutorial asks for me to have the merchant and the character start a dialog. They introduce themselves, and the first option (Who are you?) and the third option (Bye, see you later.) both work, but the second option (Tell me more about your wares.) begins the first two lines, but when the choice between items is meant to come up, nothing appears and I am unable to get out of the dialog.
I know it's kind of really bad looking for me to have problems with the tutorial, but I'm almost completely positive I'm doing the dialogue correctly, copying what's in the screenshots in the tutorial. If the tutorial is still correct, than maybe it's not in the dialogue.
The two I have for dialogue are:
// Dialog script file
@S // Dialog startup entry point
EGO: "Greetings!"
MERCHANT: "Hello there!"
return
@1
MERCHANT: My name is Derek, and I'm a local merchant.
MERCHANT: I can sell you all sorts of things.
return
@2
MERCHANT: I specialize in selling various random items.
MERCHANT: My jackets and fake eyeballs are popular.
goto-dialog dWares
@3
MERCHANT: Do pop by again sometime.
stop
and
// Dialog script file
@S // Dialog startup entry point
return
@1
MERCHANT: A fine leather jacket - for you, just $200!
EGO: That's a bit expensive, isn't it?
MERCHANT: Not for this, Sir. It's hand-made by my wife.
EGO: Oh, ok then.
return
@2
MERCHANT: A perfect joke item, the eyeball is just $3.99
return
@3
MERCHANT: Very well.
goto-previous
I only get up to "My jackets and fake eyeballs are popular."
If there's something else I should post, say so. I'm really trying to wrap my head around this.