UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Disable Nova Crawlers

broken avatar :(
Created 2 years ago
by shippuden1592
0 Members and 1 Guest are viewing this topic.
434 views
broken avatar :(
×
broken avatar :(
Location: mxGuanajuato
Date Registered: 5 May 2013
Last active: 5 days ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
My Contact & Social Links
More
Personal Quote
If you do not take risks, you can not create a fut
×
shippuden1592's Groups
In order to disable nova crawlers on your maps you must follow these steps.
 
1.-Go to raw/maps/... and find the zombie_mapname.gsc file and copy it to your mods/mapname/maps/.. folder.
 
2.-Open the file and look for this function: zombie_school_ignore_spawner( spawner ) will have the name of your map at the beginning (mine is zombie_school) and replace it with the following:
Code Snippet
Plaintext
zombie_school_ignore_spawner( spawner )
{
    // no power, no quads
    if ( !flag("power_on") )
    {
        if ( spawner.script_noteworthy == "quad_zombie_spawner" )
        {
            return true;
        }
    }
    if ( spawner.script_noteworthy == "quad_zombie_spawner" )
    {
        return true;
    }
    return false;
}
NOTE: Remember to change the name: "zombie_school" to the name of your map.

 
Loading ...