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!if(level.script == "nazi_zombie_sumpf" || level.script == "nazi_zombie_factory" )
{
// Anchor target will grab the weapon spawn point inside the box, so the fx will be centered on it too
anchor = GetEnt(level.chests[level.chest_index].target, "targetname");
anchorTarget = GetEnt(anchor.target, "targetname");
level.pandora_light = Spawn( "script_model", anchorTarget.origin );
level.pandora_light.angles = anchorTarget.angles + (-90, 0, 0);
//temp_fx_origin rotateto((-90, (box_origin.angles[1] * -1), 0), 0.05);
level.pandora_light SetModel( "tag_origin" );
playfxontag(level._effect["lght_marker"], level.pandora_light, "tag_origin");
}
// DCS:)
{
// Anchor target will grab the weapon spawn point inside the box, so the fx will be centered on it too
anchor = GetEnt(level.chests[level.chest_index].target, "targetname");
anchorTarget = GetEnt(anchor.target, "targetname");
level.pandora_light = Spawn( "script_model", anchorTarget.origin );
level.pandora_light.angles = (-90, 0, 0);
level.pandora_light SetModel( "tag_origin" );
//playfxontag(level._effect["lght_marker"], level.pandora_light, "tag_origin");
}
This tut worked for knifing, but now for some reason the game freezes when I aim down sights and shoot a zombie during instakill. After the long freeze of about 5 seconds, the shot disappears and doesn't kill the zombie. This issue is only when I have instakill and when I aim down the sights and shoot at a zombie. I've reversed the steps in this tut and my issue is fixed, but I'm wondering if you noticed the same issue?
remove_mod_from_methodofdeath( mod )
{
if (mod == "")
return "";
modStrings = strTok( mod, "_" );
modName = "";
for( i = 1; i < modStrings.size; i ++ )
{
modName += modStrings[i];
}
return modName;
}