TheHordeUndead_PRC8/_module/nss/spawndefenders2.nss
Jaysyn904 e0ec0015e6 Initial upload
Initial upload
2023-09-21 20:25:34 -04:00

11 lines
291 B
Plaintext

// Spawn in the defenders
void main()
{
location loc;
loc = GetLocation(GetObjectByTag("spawnskelchief1"));
CreateObject(OBJECT_TYPE_CREATURE, "skelchief001", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnskelchief2"));
CreateObject(OBJECT_TYPE_CREATURE, "skelchief002", loc, TRUE);
}