void main() { object oTarget; object oSpawn; location lTarget; // Get the PC who is in this conversation. object oPC = GetPCSpeaker(); oTarget = oPC; lTarget = GetLocation(oTarget); oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "ningbird", lTarget); oTarget = oSpawn; AssignCommand(oTarget, ActionStartConversation(oPC, "")); }