Hi All,
My game starts off with the player and another character in the room. I want it so when using dialog if a certain question is chosen then this makes a 3rd charactor walk into the room, ask me a question and the other character to leave.
Any ideas how to achive this?
On the 3rd character, place it outside of the room from where it's supposed to be, then use cThirdCharacter.walk (https://adventuregamestudio.github.io/ags-manual/Character.html#walk) to make the third character walk to the place you want.
You can do script functions inside a dialog text if you preceed it by a space or more.
@S // Dialog startup entry point
CharacterOne: Hi Two!
CharacterTwo: Hello One!
cCharacterThree.Walk(16,32,eBlock);
CharacterThree: Hello One and Two!
CharacterTwo: Humpf.
cCharacterTwo.Walk(-2,-2,eBlock);
stop
Working thank you very much!