UGX-Mods

Call of Duty 5: World at War => Downloadable Items for Mappers => Custom Maps, Mods & Tools => Scripts => Topic started by: shippuden1592 on October 10, 2021, 02:35:15 am

Title: COD Online - Hazmat
Post by: shippuden1592 on October 10, 2021, 02:35:15 am

www.mediafire.com

 
Code Snippet
Plaintext
https://www.mediafire.com/file/soh9qtkfjrnartw/shippuden_utility.gsc/file


 1.-Once unpacked and put everything in place to go to _zombiemode and add this:
Code Snippet
Plaintext
maps\_zombiemode_ai_hazmat::init();
under:
Code Snippet
Plaintext
maps\_zombiemode_auto_turret::init();
2.-In radiant add prefab that comes in the rar "hazmat" and put it in areas where you want to make napalm respawn
 
3.-In each info_volume have their areas add this:
Code Snippet
Plaintext
script_noteworthy    player_zone
4.-In this generic_human.atr below:
Code Snippet
Plaintext
body
{
put this:
Code Snippet
Plaintext
ai_hazmat_sprint
5.-Add this to your mod.csv
Code Snippet
Plaintext
include,online_hazmat
You are free to modify:
Code Snippet
Plaintext
set_zombie_var( "hazmat_first_round",            1 );         //Round to start + RandomIntRange( level.zombie_vars["hazmat_rnd_min"], level.zombie_vars["hazmat_rnd_max"] )
    set_zombie_var( "hazmat_rnd_max",            5 );        //Maximum spawn next round between
    set_zombie_var( "hazmat_rnd_min",            3 );        //smaller number of rounds from next spawn
    set_zombie_var( "hazmat_health_multiplier",        25 );        //Increased life
    set_zombie_var( "hazmat_alive",                false );    //hazmat Live / Dead
    set_zombie_var( "hazmat_explo_radius_plr",        80 );        //Explode radius
    set_zombie_var( "hazmat_trap_damage",            250 );        //Dame trap for second

At the end use you like more ;)