TheHordeOrcs_PRC8/_module/nss/spawndefenders1.nss

10 lines
237 B
Plaintext
Raw Normal View History

// Spawn in the defenders
void main()
{
location loc;
loc = GetLocation(GetObjectByTag("spawnpoint5"));
CreateObject(OBJECT_TYPE_CREATURE, "orcdefender003", loc, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "orcdefender005", loc, TRUE);
}