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!Error -1073741819
ERROR: Lightmap coordinates don't change in at least one direction; try the LMAP or NATURAL buttons in the surface dialog.
In map C:\Program Files (x86)\Steam\SteamApps\common\Call of Duty World at War\map_source\nazi_zombie_lockedforever.map on entity 0 brush 20 at -176 427 48
ERROR: surface 'okinawa_terrain_dirt_wetdirt_blend' is partially floating or needs to be aligned
In map C:\Program Files (x86)\Steam\SteamApps\common\Call of Duty World at War\map_source\nazi_zombie_lockedforever.map on entity 0 brush 10 at -222 439 -2
axe_break()
{
triggers = GetEntArray("trigger_break_axe", "targetname");
for(i=0; i<triggers.size; i++)
{
triggers[i] thread wait_for_break();
}
}
wait_for_break()
{
blocker = GetEnt(self.target, "targetname");
while(1)
{
self waittill("trigger", player);
weapon = player getCurrentWeapon();
if (weapon == "axe")
{
player play_sound_on_entity( "wood_break" );
blocker delete();
flag_set(self.script_noteworthy);
self delete();
}
wait 0.3;
}
}