GetPedSimplestTask: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} This function is used to get the name of a specified ped's current simplest task.<br> ==Syntax== <syntaxhighlight lang="lua"> string getPedSimplestTask ( ped thePed ) <...)
(No difference)

Revision as of 17:53, 30 March 2008

This function is used to get the name of a specified ped's current simplest task.

Syntax

string getPedSimplestTask ( ped thePed )

Required Arguments

  • thePed: The ped whose task you want to retrieve.

Returns

Returns a string representing the name of the ped's simplest, active task.

Example

This example prints the name of a player's simplest task to the chat, when they use the "sTask" command.

function showSTask ()
  local thetask = getPedSimplestTask ( getLocalPlayer() )
  outputChatBox ( getPlayerName ( getLocalPlayer() ) .. "'s simplest task is: " .. thetask )
end
addCommandHandler ( "sTask", showSTask )

See Also

Shared