GetPlayerSimplestTask: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(fixed silly example mistake)
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">
addCommandHandler ( "simplest_task", "simplest_task" )
addCommandHandler ( "simplest_task", "task" )
function task ( source, key )
function task ( source, key )
   task = getPlayerSimplestTask ( source )
   task = getPlayerSimplestTask ( source )

Revision as of 18:11, 12 November 2006

This function is used to get the name of a specified players current simplest task.

Syntax

string getPlayerSimplestTask ( player thePlayer )

Required Arguments

  • thePlayer: The player whose task you want to retrieve.

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

addCommandHandler ( "simplest_task", "task" )
function task ( source, key )
  task = getPlayerSimplestTask ( source )
  outputChatBox ( getClientName ( source ) .. "'s simplest task is: " .. task )
end    

See Also