Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Revonx on Tue 23/09/2008 14:33:10

Title: new-room X Dialog Problems
Post by: Revonx on Tue 23/09/2008 14:33:10
As soon as I enter the dialog it takes me straight to a different room (accessed by clicking on one of the options) without even seeing the dialog options themselves, anybody got an idea?
Title: Re: new-room X Dialog Problems
Post by: Gilbert on Tue 23/09/2008 14:44:53
Can you post your dialog script here for us to check?
Title: Re: new-room X Dialog Problems
Post by: Akatosh on Tue 23/09/2008 14:50:06
Have you inserted a return in the dialog's startup section?
Title: Re: new-room X Dialog Problems
Post by: Revonx on Tue 23/09/2008 15:12:14
// dialog script file
@S  // dialog startup entry point
return
@1  // option 1
new-room 5
stop
@2  // option 2
new-room 5
stop
@3  // option 3
new-room 5
stop

Its probably a simple explanation and I'm just being ignorant ;D
Title: Re: new-room X Dialog Problems
Post by: Revonx on Tue 23/09/2008 15:16:17
Thankyou guys all the same, I've just figured it out, sorry for wasting your time