i mean link them together like this...
put a npc label in both NPC....
- script NPC1 -1,{
OnWhatEverLabel:
.........blablabla.............
}
- script NPC2 -1,{
OnWhatEverLabel:
.........blablabla.............
}
then the NPC that call for both NPC
prontera,155,181,5 script MAINNPC 123,{
switch( select("Call NPC 1:Call NPC 2") ){
Case 1: donpcevent "NPC1::OnWhatEverLabel"; break;
Case 2: donpcevent "NPC2::OnWhatEverLabel"; break;
}
close;
}