Files
Recompilable-gscs-for-BO2-z…/zm_tomb_patch/maps/mp/zm_tomb_standard.gsc
JezuzLizard d8e90458da checked 15 zm_tomb_patch scripts
Checked zm_tomb_ee_main_step_1 thru 8, zm_tomb_ambient_scripts.gsc, zm_tomb_capture_zone_ffotd.gsc, zm_tomb_challenges.gsc, zm_tomb_ee_lights.gsc, zm_tomb_gamemodes.gsc, zm_tomb_giant_robot_ffotd.gsc, zm_tomb_standard.gsc.
2020-08-06 00:34:39 -07:00

29 lines
878 B
Plaintext

//checked includes match cerberus output
#include maps/mp/zombies/_zm_magicbox;
#include maps/mp/zombies/_zm_game_module;
#include maps/mp/gametypes_zm/_zm_gametype;
#include maps/mp/zombies/_zm_utility;
#include common_scripts/utility;
#include maps/mp/_utility;
precache() //checked matches cerberus output
{
}
main() //checked matches cerberus output
{
maps/mp/gametypes_zm/_zm_gametype::setup_standard_objects( "tomb" );
maps/mp/zombies/_zm_game_module::set_current_game_module( level.game_module_standard_index );
flag_wait( "initial_blackscreen_passed" );
flag_set( "power_on" );
zm_treasure_chest_init();
}
zm_treasure_chest_init() //checked matches cerberus output
{
chest1 = getstruct( "start_chest", "script_noteworthy" );
level.chests = [];
level.chests[ level.chests.size ] = chest1;
maps/mp/zombies/_zm_magicbox::treasure_chest_init( "start_chest" );
}