SetPlayerNametagShowing

From Multi Theft Auto: Wiki
Revision as of 02:02, 11 April 2007 by Ransom (talk | contribs)
Jump to navigation Jump to search

This fake function is for use with blah & blah and does blahblahblabhalbhl

Syntax

bool setPlayerNametagShowing ( player thePlayer, bool showing )


Required Arguments

  • thePlayer: Define the player whos tag visiblity status you want to change
  • showing: Use true or false to show/hide the tag

Returns

Returns true if tag is showing, false otherwise.

Example

This script will turn off player tags for everyone

root = getRootElement ()
players = {}
--Make a players varible and define it as a table
players = getElementsByType ( "player" )
--Store all the players in the server into the table

addEventHandler ( "onResourceStart", root, "ResourceStart" )
function ResourceStart ( name, root )
	for k,v in players do
	--for all the players in the table
	setPlayerNametagShowing ( v, false )
	--turn off their nametag
	end
end

addEventHandler ( "onPlayerJoin", root, "PlayerJoin" )
function PlayerJoin ()
	setPlayerNametagShowing ( source, false )
	--Whoever joins the server should also have their nametags deactivated
end

See Also

-- leave this unless you complete the function