GetPedSimplestTask: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 2: Line 2:
{{Client function}}
{{Client function}}
This function is used to get the name of a specified ped's current simplest [[task]].<br>
This function is used to get the name of a specified ped's current simplest [[task]].<br>
 
{{Note|See [[getPedTask]] to get a all tasks.}}
''Note: See [[getPedTask]] to get a all tasks.''


==Syntax==
==Syntax==

Revision as of 04:24, 11 August 2019

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

[[{{{image}}}|link=|]] 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