//Put this script OnEnter
void main()
{

object oPC = GetEnteringObject();

if (!GetIsPC(oPC)) return;

if (GetItemPossessedBy(oPC, "secret1")!= OBJECT_INVALID)
   {
   ActionStartConversation(oPC, "xpgoldconv");

   }
}