IsPlayerInWater

From Multi Theft Auto: Wiki
Revision as of 09:11, 3 August 2007 by Driver2 (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 currenlty in water.

Syntax

Click to expand [+]
Server
Click to expand [+]
Client

Example

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

 [lua]
function showPlayersInWater(player)
	local players = getElementsByType("player")
	local list = ""
	for k,v in ipairs(players) do
		if (isPlayerUnderWater(v) == true) then
			list = list.." "..getClientName(v)
		end
	end
	outputChatBox("Players pretending to be trouts:"..list,player)
end
addCommandHandler("playersInWater",showPlayersInWater)

See Also