12 lines
136 B
Plaintext
12 lines
136 B
Plaintext
//Put this script OnUsed
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastUsedBy();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
ActionStartConversation(oPC, "");
|
|
|
|
}
|