You mean only call the event on a certain NPC? Try setting a special number to one of the npc's save variables, then looping through all the NPC's in the level looking for the NPC with the certain save variable:
NPC Code:
for (i=0;i<npcscount;i++) {
if (npcs[i].save[3]==11) callnpc i,event;
}