IsPedInWater: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
m (Visual improvement)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
{{Deprecated|isElementInWater}}


Checks whether or not a ped is currently in water.
Checks whether or not a ped is currently in water.

Latest revision as of 11:43, 26 June 2014

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions.

Please use isElementInWater instead.


Checks whether or not a ped is currently in water.

Syntax

bool isPedInWater ( ped thePed )

Required Arguments

  • thePed: the ped you want to check

Returns

Returns true if the ped is in water, false if he is not or an invalid element was passed.

Example

Click to collapse [-]
Client

This example shows all players that are in water in a list to the player who enters the 'playersInWater' command.

function showPlayersInWater ( sourcePlayer, command )
	local players = getElementsByType ( "player" )
	local list = ""
	for k,v in ipairs ( players ) do
		if isPedInWater ( v ) then
			list = list .. " " .. getPlayerName ( v )
		end
	end
	outputChatBox("Players pretending to be trouts: " .. list, sourcePlayer)
end
addCommandHandler("playersInWater", showPlayersInWater)

See Also