Events - spawning multiple mobs
Cilicou opened this issue ยท 2 comments
I would like to know if I did something wrong because I created an event that triggers at the start of a killing quest. Using the in game event builder I specified a spawn point for 5 zombies to spawn at the start of the quest but only 1 spawns.
Here's my event and quest folder.
Thks in advance !
here is how I wrote a mob spawning event and the last time I checked it worked
Ambush1:
message: you're under attack!
effects:
- GHAST_SHRIEK
effect-locations:
- Gorgoroth -581 84 -638
commands:
- /summon Zombie -581 84 -638
- /summon Zombie -588 86 -636
- /summon Zombie -584 86 -636
- /summon Zombie -582 84 -647
- /summon Zombie -582 85 -643
(note each mob is given its own spawn coords and for whatever reason the world does not have to be specified as with the seperate sound effects command (I use multiworld and have several worlds going))