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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - xDeidara

Hey, I am just wondering if it's possible to remove certain weapons from the mysterybox via gsc scripting, and if so how would I go about doing it any help or pointers would be much appreciated thanks :)
6 years ago
Ahh righ okay, so it's not possible through scripting like it is on previous cods?
7 years ago
Hey, I have been looking around and through the docs and haven't had much luck so I'm hoping someone here would be able to help me out. What I am trying to do through a mod/scripting is to change the lighting/skybox of all multiplayer maps to something dark and spooky like with fog if possible for a game mode I am working on any help would be much appreciated thanks.
7 years ago
This is the script I use to change the price of it.

Code Snippet
Plaintext
function boxcost(value){
    self IPrintLn("Box Price Set To: " +value);
     foreach(box in level.chests)
        box.zombie_cost = value;
}
7 years ago
Hey so, before the release of zombie chronicles update on PC my round change function was working fine and would change the round to the round set however now it doesn't work and just kills all zombies on the map, has anyone else noticed this and figured out a work around or is there something that got changed script wise to stop this from working?

Code Snippet
Plaintext
function jumpToRound(n_target_round)
{
level notify( "restart_round" );

if ( n_target_round < 1 )
{
n_target_round = 1;
}

level.zombie_total = 0;
zombie_utility::ai_calculate_health( n_target_round );
level.round_number = n_target_round - 1;

// kill all active zombies
zombies = zombie_utility::get_round_enemy_array();
if ( isdefined( zombies ) )
{
array::run_all( zombies, &Kill );
}

level.sndGotoRoundOccurred = true;

level waittill( "between_round_over" );
}
7 years ago
Hey, just wondering does anyone have the sound ID/names for the easter egg songs for each map?
7 years ago
Loading ...