Now this script only summon a demon, can i change this to summon a random boss like (Demon, Orshaabal, etc)?
local bossId = nil
function addBoss()
local monster = Game.createMonster("Demon", Position(32201, 32198, 7), false, true)
bossId = monster and monster:getId() or nil
end...