TheHordeOrcs_PRC8/_module/nss/spawndefenders2.nss

10 lines
237 B
Plaintext
Raw Permalink Normal View History

// Spawn in the defenders
void main()
{
location loc;
loc = GetLocation(GetObjectByTag("spawnpoint1"));
CreateObject(OBJECT_TYPE_CREATURE, "orcdefender001", loc, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "orcdefender002", loc, TRUE);
}