Initial commit.

This commit is contained in:
Redacted by Stellabellum INC
2013-09-10 23:17:15 -07:00
commit 485a019196
81032 changed files with 7634843 additions and 0 deletions
@@ -0,0 +1,25 @@
inherits creature_spawner.base_newbie_creature_spawner;
trigger OnInitialize()
{
// spawnCreatures(self);
return SCRIPT_CONTINUE;
}
messageHandler creatureDied()
{
// doDeathRespawn(self);
return SCRIPT_CONTINUE;
}
// overloading these two functions.
string pickCreature()
{
return null;
}
int getMaxPop()
{
int maxPop = 0;
return maxPop;
}