Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-21 20:25:34 -04:00
parent 530aa08f94
commit e0ec0015e6
839 changed files with 442077 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Spawn in the scouts
void main()
{
location loc;
/* loc = GetLocation(GetObjectByTag("spawnwight6"));
CreateObject(OBJECT_TYPE_CREATURE, "wightscout006", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnwight7"));
CreateObject(OBJECT_TYPE_CREATURE, "wightscout007", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnwight8"));
CreateObject(OBJECT_TYPE_CREATURE, "wightscout008", loc, TRUE);
*/
loc = GetLocation(GetObjectByTag("spawnravager9"));
CreateObject(OBJECT_TYPE_CREATURE, "ghoulravager009", loc, TRUE);
loc = GetLocation(GetObjectByTag("spawnravager10"));
CreateObject(OBJECT_TYPE_CREATURE, "ghoulravager010", loc, TRUE);
}