Posts
72
Respect
12Add +1
Forum Rank
Rotting Walker
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!void <entity> IsPlayerJumping()![]() | Has released one or more maps to the UGX-Mods community. |
![]() | 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 |
void <entity> IsPlayerJumping()
CATEGORY:
CLIENT/SERVER: Client
SUMMARY: Returns 1 if the player is currently jumping
EXAMPLE: if(ent IsPlayerJumping())
void <entity> IsOnGround()
CATEGORY:
CLIENT/SERVER: Server
SUMMARY: Returns true if entity is on ground
EXAMPLE: if( self IsOnGround() ) { //do something }
void <player> JumpButtonPressed()
CATEGORY: Player
CLIENT/SERVER: Server
SUMMARY: Check if the player is pressing the 'jump' button.
EXAMPLE: while( self JumpButtonPressed() )...