Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: Ping998
Hi there, for many years I've created zombie maps for the community. One of my most known types of maps is Tower Defence style maps such as "Alien Defense" (WaW) and "Demon Defender" (BO3).
As a result, I would like to give back to the community by showing you guys how I made these maps and how you can create your own!
A lot of people have messaged me wanting to know how to do this, so here it is!
This tutorial is mainly for BO3, it wouldn't work exactly on WaW (I used a different method back then):
In radiant, create a baic window-riser spawnpoint and a window as shown (you should know how to do this):
Create a trigger_multiple either just after or just before the window, this will determine whether the zombies must break down the barrier to end the game or they just need to reach the window - in this example I will put the trigger_multiple just after the window (to find trigger_multiple go to your Entity Browser -> Trigger -> multiple):
Now, change the KVPs of the trigger_multiple (press N) to this:
If - like in Alien Defense/Demon Defender - you would like to have a warning message pop-up on the player's screen when zombies get to a certain point, do the following:
Make a new trigger_multiple and place it somewhere before the window so that the zombies will pass through it:
Change the KVPs of the new trigger_multiple to the following:
Open 'BO3root/usermaps/zm_YOURMAPNAME/scripts/zm_YOURMAPNAME.gsc' and add the following code to the bottom of the file:
function displayMessage()
{
while(1) {
trig = getEnt( "warning_trigger","targetname" );
trig waittill( "trigger" );
iPrintLn( "Zombies have breached the base!" );
}
}
Make sure to call the function by putting the following anywhere in main():
thread displayMessage();
Here's a quick few things that you will need to know if your going to use this for your map:
<ul style="padding-left:40px;margin:0;">And that's it! Really simple! Make sure to give me at least a little mention in the credits for the concept!
If you have any questions please feel free to post them below!
- Ping