Difference between revisions of "GET SCRIPT TASK STATUS"
Jump to navigation
Jump to search
m (Fixed description) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Native | {{Native | ||
− | |np= | + | |np=2 |
− | |p1t= | + | |p1t=Entity |
− | |p1d= | + | |p1d=Entity |
|p2t=unknown | |p2t=unknown | ||
− | |p2d= | + | |p2d=Likely: The task in question, appears hashed |
− | | | + | |r=1 |
− | | | + | |rt=Int |
− | | | + | |rd=Appears to be int codes of task status, e.g, 0, 1, 7 |
+ | 1 is used 45%, 0 is used 45% and 7 is used 10% | ||
}} | }} | ||
− | + | ||
+ | Presumably gets the status of a task executed by a script. | ||
+ | |||
+ | == Example == | ||
+ | |||
+ | <code> | ||
+ | if (AI::GET_SCRIPT_TASK_STATUS(PLAYER::PLAYER_PED_ID(), 0x7D8F4411) == 1)) | ||
+ | </code> |
Latest revision as of 23:36, 5 May 2015
Number of parameters: 2 | ||
---|---|---|
Parameter # | Type | Description |
1. | Entity | Entity |
2. | unknown | Likely: The task in question, appears hashed |
Return value: | ||
Type | Description | |
Int | Appears to be int codes of task status, e.g, 0, 1, 7 1 is used 45%, 0 is used 45% and 7 is used 10% |
Presumably gets the status of a task executed by a script.
Example
if (AI::GET_SCRIPT_TASK_STATUS(PLAYER::PLAYER_PED_ID(), 0x7D8F4411) == 1))