GetPedSimplestTask

From Multi Theft Auto: Wiki
Revision as of 17:53, 30 March 2008 by Arc (talk | contribs) (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 ) <...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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