Modme Forums

Multiple magic box starting locations?

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: ZombieKid164
Does anyone know how to make multiple box starting locations? I know this has been possible from very early on in the BO3 Mod tools lifetime because Madgaz's map "Fabrik Der Untoten" had it. I'm just not quite sure how you would go along doing this. Thanks!


ModmeBot:

Reply By: mathfag
add this to your mapname.gsc to randomize start box spawn

level.random_pandora_box_start = 1;

add this as a kvp to the box prefab to exclude it (in case you don't want the box in the spawn room to spawn first)

start_exclude = 1


<hr>Source: _zm_magicbox.gsc line 200


ModmeBot:

Reply By: Frost Iceforge

mathfag
add this to your mapname.gsc to randomize start box spawn level.random_pandora_box_start = 1; add this as a kvp to the box prefab to exclude it (in case you don't want the box in the spawn room to spawn first) start_exclude = 1 Source: _zm_magicbox.gsc line 200

Thanks, man! Wanted to know this too! Take a win!