I am trying to rewrite my conversation and for some reason cannot get it to work.
Here is what i have:
Code: Select all
// Lou NPC script
include scripts/1
//start conversation
r_script_node "main" [result "[Hi, My name is Bob.]"] [
r_response "Hey Bob, I'm well." normal //goes to dialogue normal
r_response "Goodbye" -1 //closes the dialogue
]
//normal path
r_script_node "normal" [result "[I'm glad to hear it]" ] [
r_response "Goodbye" -1
]
What does this mean?