15 lines
221 B
Plaintext
15 lines
221 B
Plaintext
|
//Put this script OnEnter
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "secret1")!= OBJECT_INVALID)
|
||
|
{
|
||
|
ActionStartConversation(oPC, "xpgoldconv");
|
||
|
|
||
|
}
|
||
|
}
|