GetPedSimplestTask
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 ped's task. |
Syntax
string getPedSimplestTask ( ped thePed )
Required Arguments
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 "simplestTask" command.
function showSimplestTask() local taskName = getPedSimplestTask(localPlayer) local playerName = getPlayerName(localPlayer) outputChatBox(playerName.."'s simplest task is: "..taskName) end addCommandHandler("simplestTask", showSimplestTask)