Difficulty level for monster mobs
To spawn ||mobs:monster||
mobs, the difficulty level for your world must be set to something that is greater than Peaceful, such as Easy, Normal, or Hard.
A monster mob in the game.
mobs.monster(MonsterMob.Creeper);
To spawn ||mobs:monster||
mobs, the difficulty level for your world must be set to something that is greater than Peaceful, such as Easy, Normal, or Hard.
Spawn a spider near the player when the arachnid
command is typed in chat.
player.onChat("arachnid", function () {
gameplay.setDifficulty(HARD)
mobs.spawn(mobs.monster(MonsterMob.Spider), pos(5, 0, 0))
})