mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
25 lines
354 B
Plaintext
25 lines
354 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;
|
|
} |