TheHordeUndead_PRC8/_module/nss/spawndefenders2.nss

11 lines
291 B
Plaintext
Raw Normal View History

2023-09-21 20:25:34 -04:00
// 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);
}