Page 1 of 1

spawners and monster levels

Posted: Sat Sep 22, 2012 9:43 am
by zeltak
Hey, I presume monster level stays default 1 no matter on what dungeon level it is and same goes for spawners that spawns those creatures. Is there a way to define what level monster spawner spawns? I would like to use crowerns quite late in my dungeon and spawn them endlessly :twisted:, but they're quite squishy if I can't change their levels. And my other question is, if I link timer to my spawner and let it spawn creatures on steady intervals, does it keep spawning until the space is filled with creatures or does it stop working if the party leaves the level where the timer is ticking those spawns?

edit: I've dabbled with monster:setLevel() script, but not sussesfully with spawners. But is it simply :setLevel() after the spawn command, eg. spawn("crowern",6,12,10,2):setLevel(3)?

Re: spawners and monster levels

Posted: Sat Sep 22, 2012 10:13 am
by SpacialKatana
Clone the crowern, bump up its stats and have the spawners spit out your new ones. Combined with the onDie hook, you can even count up how many you've killed, have aanother spawn when one dies etc etc. The possibilities are endless ;)

Re: spawners and monster levels

Posted: Sat Sep 22, 2012 10:17 am
by zeltak
Ah, you've answered as I edited my post. Thanks, that's one possibility, and easy at that. Strange that I didn't think that before even if I've cloned other creatures on my dungeon.

Re: spawners and monster levels

Posted: Sat Sep 22, 2012 10:21 am
by SpacialKatana
Cloning and Defining are our friends ;)