EN4_PRC8/_module/nss/p1_trig1.nss

11 lines
328 B
Plaintext
Raw Permalink Normal View History

void main()
{
//en4_p1_militia
if (GetLocalInt(OBJECT_SELF,"Spawned") == 0)
{
SetLocalInt(OBJECT_SELF,"Spawned",1);
CreateObject(OBJECT_TYPE_CREATURE,"en4_p1_militia",GetLocation(GetObjectByTag("P1_Guard1")));
CreateObject(OBJECT_TYPE_CREATURE,"en4_p1_militia",GetLocation(GetObjectByTag("P1_Guard2")));
}
}