GetPlayerFromNick: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Changed "DeprecatedWithAlt" template to "Deprecated" for the last time)
 
(10 intermediate revisions by 7 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Deprecated|getPlayerFromName|}}
This function returns a [[player]] [[element]] for the player with the name passed to the function.
This function returns a [[player]] [[element]] for the player with the name passed to the function.


Line 14: Line 17:


==Example==
==Example==
This example finds a [[player]] called ''Someguy'', and if he is found, he is killed and a message is displayed.
This example finds a [[player]] as specified in the command and outputs the direction and distance he is from the player who entered the command. For example: 'locate someguy'.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- Find the player with the nickname 'Someguy'
function locatePlayer( sourcePlayer, command, who )
player = getPlayerFromNick ( "Someguy" )
local targetPlayer = getPlayerFromNick ( who )                -- find the player that was specified in the command
-- If a player was returned (false is returned if the player isn't found)
if ( targetPlayer ) then                                      -- if a player was found
if ( player ~= false )
local x,y,z = getElementPosition ( sourcePlayer )    -- save the position of the player who entered the command
-- If the player was killed succesfully then
local xp,yp,zp = getElementPosition ( targetPlayer ) -- save the position of the player who should be located
if ( killPlayer ( player ) ) then
local dir = nil
-- Say so in the chat
if (yp > y) then
serverChat ( "Someguy was found, and eliminated" )
dir = "N"
else
dir = "S"
end
if (xp > x) then
dir = dir .. "E"
else
dir = dir .. "W"
end
local distance = math.ceil ( getDistanceBetweenPoints3D(x, y, z, xp, yp, zp) )
outputChatBox( who .. " found " .. dir .. " (" .. distance .. ")", sourcePlayer) -- output the message
end
end
end
end
addCommandHandler ( "locate", locatePlayer )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Player_Functions}}
{{Player functions}}

Latest revision as of 16:45, 13 February 2015

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 getPlayerFromName instead.


This function returns a player element for the player with the name passed to the function.

Syntax

player getPlayerFromNick ( string playerName )

Required Arguments

  • playerName: A string containing the name of the player you want to reference

Returns

Returns a player element for the player with the nickname provided. If there is no player with that name, false is returned.

Example

This example finds a player as specified in the command and outputs the direction and distance he is from the player who entered the command. For example: 'locate someguy'.

function locatePlayer( sourcePlayer, command, who )
	local targetPlayer = getPlayerFromNick ( who )                -- find the player that was specified in the command
	if ( targetPlayer ) then                                      -- if a player was found
		local x,y,z = getElementPosition ( sourcePlayer )     -- save the position of the player who entered the command
		local xp,yp,zp = getElementPosition ( targetPlayer )  -- save the position of the player who should be located
		local dir = nil
		if (yp > y) then
			dir = "N"
		else
			dir = "S"
		end
		if (xp > x) then
			dir = dir .. "E"
		else
			dir = dir .. "W"
		end
		local distance = math.ceil ( getDistanceBetweenPoints3D(x, y, z, xp, yp, zp) )
		outputChatBox( who .. " found " .. dir .. " (" .. distance .. ")", sourcePlayer) -- output the message
	end
end
addCommandHandler ( "locate", locatePlayer )

See Also

Shared