IsPlayerOnGround

From Multi Theft Auto: Wiki
Revision as of 18:13, 14 August 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is used to determine whether or not a player is on the ground.

Syntax

bool isPlayerOnGround ( player thePlayer )

Required Arguments

  • player: The player you are checking.

Returns

Returns true if the player is on the ground, 'false' otherwise.

Example

 [lua]
addCommandHandler ( "amiflying", "isHeFlying" )
function isHeSuperman ( source, key )
  if ( isPlayerOnGround ( source ) ) then
    outputChatBox ( "no, you're not flying, you're just stoned!" )
  else
    outputChatBox ( "is it a bird, is it a plane.. no its " .. getClientName ( source ) )
  end
end

See Also