21 lines
600 B
Plaintext
21 lines
600 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name: x2_use_placeable
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Have placeable start its conversation file with
|
||
|
whoever just used it.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Keith Warner
|
||
|
//:: Created On: Jan 16/03
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
string sDoorTag = GetTag(OBJECT_SELF);
|
||
|
|
||
|
SetLocalString(GetObjectByTag("ETH_VarHolder"), "vWhatIsDoorTag", sDoorTag);
|
||
|
ActionStartConversation(GetLastUsedBy());
|
||
|
}
|