4) Copy CODWAWROOT/raw/maps/_zombiemode.gsc to CODWAWROOT/mods/MODNAME/maps/_zombiemode.gsc
5) Open CODWAWROOT/mods/MODNAME/maps/_zombiemode.gsc and find this function:
Code Snippet
Plaintext
round_spawning()
scroll down until you find this:
Code Snippet
Plaintext
level.zombie_total = max; mixed_spawns = 0; // Number of mixed spawns this round. Currently means number of dogs in a mixed round
change it to this:
Code Snippet
Plaintext
level.zombies_spawn_this_round = max; level.zombie_total = max; mixed_spawns = 0; // Number of mixed spawns this round. Currently means number of dogs in a mixed round
6) Copy CODWAWROOT/raw/maps/_zombiemode_dogs.gsc to CODWAWROOT/mods/MODNAME/maps/_zombiemode_dogs.gsc
7) Open CODWAWROOT/mods/MODNAME/maps/_zombiemode_dogs.gsc and find this function:
4). Copy CODWAWROOT/raw/maps/_zombiemode.gsc to CODWAWROOT/mods/MODNAME/maps/_zombiemode.gsc
5). Open CODWAWROOT/mods/MODNAME/maps/_zombiemode.gsc and find this function:
Code Snippet
Plaintext
round_spawning();
scroll down untill you find this:
Code Snippet
Plaintext
level.zombie_total = max; mixed_spawns = 0; // Number of mixed spawns this round. Currently means number of dogs in a mixed round
and change it to this:
Code Snippet
Plaintext
level.zombies_spawn_this_round = max; level.zombie_total = max; mixed_spawns = 0; // Number of mixed spawns this round. Currently means number of dogs in a mixed round
Don't forget to include everything in your launcher!
This is literally my first post on these forums >.> But I'm trying to make my first ever map/mod thing for Waw, and I can't really get this to work. But I did follow everything you said, I only don't get what you meant by including it all in the launcher... But to sum it up, in game, it doesn't show up. Any help is aprieciated ^^;
This is literally my first post on these forums >.> But I'm trying to make my first ever map/mod thing for Waw, and I can't really get this to work. But I did follow everything you said, I only don't get what you meant by including it all in the launcher... But to sum it up, in game, it doesn't show up. Any help is aprieciated ^^;
By include i mean you add the scripts to your mod, so they get loaded in game. Make sure your laucher looks like this: