The easiest way to handle this would be to give the PC a tagbased item (temporarially), then from the acquire item event, for that item, you would need the following function... (Change enter_conversation_file_name to the actual name of the conversation file you will be using)
////////////////////////////////////////////////////////////////////
object oPC = GetModuleItemAcquiredBy();
object oItem;
oItem = GetModuleItemAcquired();
if (!GetIsPC(oPC)) return; //Only for PCs (just in case)
ActionStartConversation(oPC, "enter_conversation_file_name");
/////////////////////////////////////////////////////////////////////
The Item would start the conversation, so give the item the name you wish to appear in the conversation (Whom is talking with the PC?)
You would remove the item in the first line of the conversation (instantaneously)
'>
This would have the PC start the conversation with themself.. no blue part or direction changing..
Is this what your looking for?
Modifié par Genisys, 17 août 2010 - 01:46 .