1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00
Files
BO2-Reimagined/scripts/zm/replaced/zm_nuked_gamemodes.gsc
2024-01-14 03:25:00 -08:00

21 lines
739 B
Plaintext

#include common_scripts\utility;
#include maps\mp\_utility;
#include maps\mp\zombies\_zm_utility;
#include maps\mp\zombies\_zm_game_module;
#include maps\mp\gametypes_zm\_zm_gametype;
#include maps\mp\zm_nuked;
#include maps\mp\zm_nuked_standard;
init()
{
add_map_gamemode("zstandard", maps\mp\zm_nuked::zstandard_preinit, undefined, undefined);
add_map_gamemode("zgrief", ::zgrief_preinit, undefined, undefined);
add_map_location_gamemode("zstandard", "nuked", maps\mp\zm_nuked_standard::precache, maps\mp\zm_nuked_standard::main);
add_map_location_gamemode("zgrief", "nuked", maps\mp\zm_nuked_standard::precache, maps\mp\zm_nuked_standard::main);
}
zgrief_preinit()
{
registerclientfield("toplayer", "meat_stink", 1, 1, "int");
}