Jump to content

Home

force power starts dialog


brwarner

Recommended Posts

is it possible for a force power to start a dialog??

 

Yes, you start the dialog from the Impact script just like any other instance where you start a dialog from script.

 

For my debug force power I simply use this as impact script, for example:

void main() {
   SetKeepStealthInDialog(TRUE);
   SetLockOrientationInDialog(OBJECT_SELF, TRUE);
   ActionStartConversation(OBJECT_SELF, "st_debug");
}

 

This would start a conversation with st_debug.dlg with the person who use the power (which in this case would be a "computer screen" dialog, but it works with normal ones too of course).

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...