GetPlayerSimplestTask: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
This example prints the name of a players simplest task to the chat, when they use the "simplest_task" command. | This example prints the name of a players simplest task to the chat, when they use the "simplest_task" command. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function showSTask () | |||
function | local thetask = getPlayerSimplestTask ( getLocalPlayer() ) | ||
thetask = getPlayerSimplestTask ( | outputChatBox ( getPlayerName ( getLocalPlayer() ) .. "'s simplest task is: " .. thetask ) | ||
outputChatBox ( | end | ||
end | addCommandHandler ( "sTask", showSTask ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Player functions}} | {{Player functions}} |
Revision as of 12:09, 29 July 2007
This function is used to get the name of a specified players current simplest task.
Syntax
string getPlayerSimplestTask ( player thePlayer )
Required Arguments
Returns
Returns a string representing the name of the player's simplest, active task.
Example
This example prints the name of a players simplest task to the chat, when they use the "simplest_task" command.
function showSTask () local thetask = getPlayerSimplestTask ( getLocalPlayer() ) outputChatBox ( getPlayerName ( getLocalPlayer() ) .. "'s simplest task is: " .. thetask ) end addCommandHandler ( "sTask", showSTask )
See Also
- getPlayerTeam
- getPlayerBlurLevel
- setPlayerBlurLevel
- getPlayerSerial
- forcePlayerMap
- getPlayerScriptDebugLevel
- getPlayerFromName
- getPlayerMoney
- getPlayerName
- getPlayerNametagColor
- getPlayerNametagText
- getPlayerPing
- getPlayerWantedLevel
- givePlayerMoney
- isPlayerMapForced
- isPlayerNametagShowing
- setPlayerHudComponentVisible
- setPlayerMoney
- setPlayerNametagColor
- setPlayerNametagShowing
- setPlayerNametagText
- takePlayerMoney
- countPlayersInTeam
- getPlayersInTeam
- isVoiceEnabled
- setControlState
- getControlState