GetPlayerSimplestTask: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(fixed silly example mistake)
No edit summary
Line 18: Line 18:
addCommandHandler ( "simplest_task", "task" )
addCommandHandler ( "simplest_task", "task" )
function task ( source, key )
function task ( source, key )
   task = getPlayerSimplestTask ( source )
   thetask = getPlayerSimplestTask ( source )
   outputChatBox ( getClientName ( source ) .. "'s simplest task is: " .. task )
   outputChatBox ( getClientName ( source ) .. "'s simplest task is: " .. thetask )
end     
end     



Revision as of 18:20, 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 )
  thetask = getPlayerSimplestTask ( source )
  outputChatBox ( getClientName ( source ) .. "'s simplest task is: " .. thetask )
end    

See Also