SetPlayerNametagText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Changed getPlayerFromNick to getPlayerFromName)
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Needs_Checking|Read my description. This function seems kinda silly if its only going to change the text of the tag inside the world on the player. --[[User:Ransom|Ransom]] 21:58, 10 April 2007 (CDT)}}
__NOTOC__  
__NOTOC__  
{{Server client function}}
<!-- Describe in plain english what this function does. Don't go into details, just give an overview -->
<!-- Describe in plain english what this function does. Don't go into details, just give an overview -->
This will change the text of a player's nickname in the world to something besides the nickname he choose. This will not change the player's actual nickname, it only changes the visible aspect inside the world (you will see his original nickname in the scoreboard and will refer to his original name in scripts).
This will change the text of a player's nickname in the world to something besides the nickname he chose. This will not change the player's actual nickname, it only changes the visible aspect inside the world (you will see his original nickname in the scoreboard and will refer to his original name in scripts).


==Syntax==  
==Syntax==  
Line 21: Line 20:


==Example==  
==Example==  
<!-- Explain what the example is in a single sentance -->
This console command lets you change the name tag of lamers.
This example does...
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler ( "lamer", "ihatelamers" )
function iHateLamers ( thePlayer, commandName, playername )
function ihatelamers ( player, commandName, playername )
    -- This is a command handler that activates on text "lamer" followed by the playername
--This is a command handler that activates on text "lamer" followed by the playername
    -- in the console. The playername argument was added as an extra function argument to store the
--in the console. The playername argument was added as an extra varible to store the
    -- name of the player whose text will be changed.
--name of the player whose text will be changed.
    if playername == false then
if playername == false then
        -- Prevents the command from running if the player did not specify a value for playername
--Prevents the command from running if the player did not specify a value for playername
        outputChatBox ( "You MUST define a player to change his name tag!" )
outputChatBox ( "You MUST define a player to change his name tag!" )
    else
else
        culprit = getPlayerFromName ( playername )
culprit = getPlayerFromNick ( playername )
        -- This variable stores the result of trying to find the player associated with the playername
--This varible stores the result of trying to find the player associated with the playername
        -- that the user of the command specified
--that the user of the command specified
        if culprit ~= false then
if culprit ~= false then
            -- This checks to make sure a player nick was found. If it was not then the playername argument
--This checks to make sure a player nick was found. If it was not then the playername argument
            -- specified by the command user was not equivalent to the name of any players in the server
--specified by the command user was not equivalent to the name of any players in the server
            setPlayerNametagText ( culprit, "IM_LAME" )
setPlayerNametagText ( culprit, "IM_LAME" )
            -- finally, the nickname text is changed since the command arguments were checked and are valid
--finally, the nickname text is changed since the command arguments were checked and are valid
        else
else
            outputChatBox ( "Player does not exist!" )
outputChatBox ( "Player does not exist!" )
        end
end
    end
end
end
end
addCommandHandler ( "lamer", iHateLamers )
</syntaxhighlight>
</syntaxhighlight>


Line 52: Line 49:
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
{{Player_functions}}
{{Player_functions}}
[[Category:Incomplete]] -- leave this unless you complete the function

Revision as of 18:49, 31 December 2009

This will change the text of a player's nickname in the world to something besides the nickname he chose. This will not change the player's actual nickname, it only changes the visible aspect inside the world (you will see his original nickname in the scoreboard and will refer to his original name in scripts).

Syntax

bool setPlayerNametagText ( player thePlayer, string text )

Required Arguments

  • thePlayer: The player whose nickname text you wish to change
  • text: The new nickname text that will be displayed

Returns

Returns true if successful, false otherwise.

Example

This console command lets you change the name tag of lamers.

function iHateLamers ( thePlayer, commandName, playername )
    -- This is a command handler that activates on text "lamer" followed by the playername
    -- in the console. The playername argument was added as an extra function argument to store the
    -- name of the player whose text will be changed.
    if playername == false then
        -- Prevents the command from running if the player did not specify a value for playername
        outputChatBox ( "You MUST define a player to change his name tag!" )
    else
        culprit = getPlayerFromName ( playername )
        -- This variable stores the result of trying to find the player associated with the playername
        -- that the user of the command specified
        if culprit ~= false then
            -- This checks to make sure a player nick was found. If it was not then the playername argument
            -- specified by the command user was not equivalent to the name of any players in the server
            setPlayerNametagText ( culprit, "IM_LAME" )
            -- finally, the nickname text is changed since the command arguments were checked and are valid
        else
            outputChatBox ( "Player does not exist!" )
        end
    end
end
addCommandHandler ( "lamer", iHateLamers )

See Also