

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!/* Thread on all players. How to do that. Simply add the 1 line code below into your MapName.gsc at the bottom of the main() funtion. Then post the rest of the Phd code at the bottom of MapName.gsc
for( i = 0; i < GetPlayers().size; i++ ) GetPlayers()[i] thread PHD(); // 1 Line Code
*/
PHD()
{
self.oldSurface = self GetSurface();
self.lastStance = self GetDiveStance();
MinFall = 5;// Can Change 5 to whatever you want but I would recommend not going lower than 2
for(;;)
{
if( self HasPerk( "specialty_detectexplosive" ) )
{
if( self GetStance() == "prone" && self IsOnGround() && ( self.lastStance == "stand" || self.lastStance == "crouch" ) )
{
self.newSurface = self GetSurface() + 0.007;
ActualFall = self.oldSurface - self.newSurface;
if( self.oldSurface > self.newSurface && MinFall < ActualFall )
{
self thread Nuke();
self.oldSurface = self GetSurface();
wait .2;
}
}
if( self IsOnGround() )
{
self.oldSurface = self GetSurface();
self.lastStance = self GetDiveStance();
}
}
wait .05;
}
}
GetDiveStance()
{
return( self GetStance() );
}
Nuke()
{
self EnableInvulnerability();
self PlaySound( "nuke_flash" );
PlayFX( LoadFX( "explosions/default_explosion"), self.origin );
RadiusDamage( self.origin, 300, 5000, 1000, self );
self DisableInvulnerability();
}
GetSurface()
{
return self.origin[2];
}
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |



[/url]![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
it doesnt seem to work with bams bo perks sorry
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
no it just does nothing i tried removing the dolphin dive in my map and still no i just couldn't be bothered removing it
So now we can dive?
This. This... thing...
It has a game mode change which includes one which I can't remember, but it has a dolphin dive that works like
the authentic one, although with that 'custom made ghetto'. I want the script soooo badddd.
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
u can test it, my map is released