TheHordeUndead_PRC8/_module/nss/spawndefenders1.nss

13 lines
408 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("spawnskelchief3"));
CreateObject(OBJECT_TYPE_CREATURE, "skelchief003", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnskelchief4"));
CreateObject(OBJECT_TYPE_CREATURE, "skelchief004", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnskelchief5"));
CreateObject(OBJECT_TYPE_CREATURE, "skelchief005", loc, TRUE);
}