Files
dsrc/sku.0/sys.server/compiled/game/script/creature_spawner/talus_medium.script
T

25 lines
356 B
Plaintext

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;
}