Posts
21
Respect
Forum Rank
Legless Crawler
Primary Group
Member
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!![]() | 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_nade()
{
self endon( "death" );
while(1)
{
self waittill( "grenade_fire", grenade, weaponName );
self thread grenade_fired(grenade, weapname);
}
}
grenade_fired(grenade, weapname)
{
self endon( "death" );
while( isdefined( grenade ) )
{
last origin = grenade.origin;
wait 0.1;
}
Iprintlnbold( "grenade exploded at: "+last_origin );
}