Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

Linking Dialogs With A Script

Page: 1 of 1
 Marius Fett
11-03-2007, 7:05 AM
#1
Would It e Possible To Do This?

I Need It So That When You Click An Entry It Takes You To Another Conversation

Thanks

-DarthDingDong
 swfan28
11-03-2007, 7:39 PM
#2
Just add a script to the first conversation that starts another conversation
object oOwner = GetObjectByTag("conversation owner's tag");
DelayCommand(0.5, AssignCommand(oOwner, ActionStartConversation(GetFirstPC(), "conv. 2 filename", FALSE, CONVERSATION_TYPE_CINEMATIC, TRUE)));Use DelayCommand to give the game time to close the first conversation and make sure that the first conversation ends to the node that runs the script. Ideally however you should combine the two dialogs into one file unless you want the second conversation happen in another location in the module and/or between other characters.
Page: 1 of 1