Jump to content

Home

Dialog Problem


HK-42

Recommended Posts

Strange Problem: I edited a invisible placeable, then changed the conversation to a_invsland.dlg. I spawned the placeable but when ever I click on it the dialog dosen't launch.

 

Quick Pic:

Show spoiler
(hidden content - requires Javascript to show)
landspeeder.jpg

 

Anyidea's whats wrong.

 

If it matters I edited the boarding placeable at the ebon hawk in Davik's Palace.

Link to comment
Share on other sites

Two things. One, are there any conditionals in the dialog? If no dialog branch is valid, no dialog will launch. Two, are you sure your character can access the placeable, i.e., nothing is blocking it? Try moving the invisible placeable a little bit forward, because sometimes it looks like there is nothing in between you and the placeable, but the game engine thinks there is.

 

And I almost forgot, you did put the dialog file inside either the Override folder or packaged it into the relevant module file?

 

- Star Admiral

Link to comment
Share on other sites

Two things. One, are there any conditionals in the dialog? If no dialog branch is valid, no dialog will launch. Two, are you sure your character can access the placeable, i.e., nothing is blocking it? Try moving the invisible placeable a little bit forward, because sometimes it looks like there is nothing in between you and the placeable, but the game engine thinks there is.

 

And I almost forgot, you did put the dialog file inside either the Override folder or packaged it into the relevant module file?

 

- Star Admiral

 

1. No scripts actually all the files is:

Owner: Testing

PC: Test?

Owner: Test

 

2. I'll try that real fast expect a edit. EDIT: No luck.

 

3. In Module file like I always do :D

Link to comment
Share on other sites

Open up the placeable in KT and go to the Scripts tab. Is there an entry in the OnUsed textbox? If not, compile the following code and put the script name into that box.

 

void main() {
  ActionStartConversation( GetFirstPC() );
}

 

EDIT: Change OBJECT_SELF to GetFirstPC(). Stupid me.

 

- Star Admiral

Link to comment
Share on other sites

Open up the placeable in KT and go to the Scripts tab. Is there an entry in the OnUsed textbox? If not, compile the following code and put the script name into that box.

 

void main() {
  ActionStartConversation( OBJECT_SELF );
}

 

- Star Admiral

 

Thanks Star Admiral. It worked. :D

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...