


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!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;
}
}
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |
![]() Oil Rig Beta Access |
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();
break; // ADD THIS
}
wait 0.3;
}
}
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
It's either that ^ or you have multiple targets, or accidentally use the same kvp, and you need to get an array of them... and delete each one. If this is the case, it is better to use w to make an auto trigger, if you are not already.
if (IsDefined(self.script_noteworthy))
{
flag_set(self.script_noteworthy);
}
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |