GetPedSimplestTask

From Multi Theft Auto: Wiki
Revision as of 00:53, 28 February 2011 by Ransom (talk | contribs)
Jump to navigation Jump to search

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

Note: See getPedTask to get a all tasks.

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