Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!my waw radiant takes like 2 mins to open and it takes like 10 minutes just to compile my map (it used to be 30 secs) help please
// Mule Kick
set_zombie_var( "mulekick_cost", 4000 ); // Perk cost
set_zombie_var( "mulekick_min_weapon_slots", 2 ); // The min amount of weapons the player can drag
set_zombie_var( "mulekick_max_weapon_slots", 3 ); // The max amount of weapons the player can drag
set_zombie_var( "start_weapon", "tac45" ); // Starting weapon, this must match with the weapon file name (You no longer need to set weapon in _loadout.gsc)
did you put the sounds into Call of Duty World at War\raw\sound ?
wait_for_spawn()
{
level endon( "stop_spawn_bosses" );
_engineer_print("Ronda Spawn ---> " + level.zombie_vars["engineer_first_round"] );
while( 1 )
{
if( flag("dog_round" ) )
{
level.zombie_vars["engineer_first_round"] = level.zombie_vars["engineer_first_round"] + 1;
wait(7);
while( level.dog_intermission )
{
wait(0.5);
}
}
else
{
if( level.round_number >= level.zombie_vars["engineer_first_round"] )
level.engineer_active_on = true;
else
level.engineer_active_on = undefined;
}
wait(0.5);
}
}