IsPlayerDucked

From Multi Theft Auto: Wiki
Revision as of 19:53, 25 March 2006 by Vandalite (talk | contribs)
Jump to navigation Jump to search

Description

This function returns a boolean value (true or false) depending on whether the specified player is ducked (crouched) or not.

Syntax

bool IsPlayerDucked ( player player )

Required Arguments

Example

player = getPlayerFromID ( 1 )
if ( IsPlayerDucked ( player ) )
  serverChat ( GetPlayerName ( player ) , " is currently crouching." )
end