Straightforward question people.
Is it possible to spawn higher level monsters (such as a level 5 snail or level 2 ogre) via a script?
By the way, I know I can just define a more powerful creature and spawn that, but I'm talking about a generic scripts that would alleviate the need to do this.
Spawning higher level monsters
Re: Spawning higher level monsters
Yes, you can set the level of the monster. Just figure out which level, x, y and facing you want and it's pretty simple:
Code: Select all
function spawnHerder1()
spawn("herder", 1,17,15,3)
:setLevel(5)
endRe: Spawning higher level monsters
Thanks Sutekh. I knew the answer was going to be straightforward.Sutekh wrote:Yes, you can set the level of the monster. Just figure out which level, x, y and facing you want and it's pretty simple:
Code: Select all
function spawnHerder1() spawn("herder", 1,17,15,3) :setLevel(5) end
