10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
// 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);
|
|
}
|