13 lines
363 B
Plaintext
13 lines
363 B
Plaintext
// wazoo_lsc_close
|
|
void main()
|
|
{
|
|
object oPC=GetLastUsedBy();
|
|
object oOwner=GetLocalObject(OBJECT_SELF,"oOwner");
|
|
if (oPC==oOwner)
|
|
{ // conversation
|
|
AssignCommand(oPC,ClearAllActions(TRUE));
|
|
SetLocalObject(oPC,"oTarget",OBJECT_SELF);
|
|
AssignCommand(oPC,ActionStartConversation(oPC,"wazoo_lsc",TRUE,FALSE));
|
|
} // conversation
|
|
}
|