10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
// Spawn in the ogres
|
|
|
|
void main()
|
|
{
|
|
location loc;
|
|
loc = GetLocation(GetObjectByTag("spawnogre9"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "ogrescout009", loc, TRUE);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "ogrescout010", loc, TRUE);
|
|
}
|