IsPedBleeding: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (We can see your name in the page history)
No edit summary
Line 1: Line 1:
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
{{New feature/item|3.0159|1.5.8|20935|This function gets the state of a [[player|player's]] or [[ped|ped's]] bleeding effect.}}
{{Added feature/item|3.0159|1.5.9|1.5.8|20935|This function gets the state of a [[player|player's]] or [[ped|ped's]] bleeding effect.}}
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">bool isPedBleeding( ped thePed ) </syntaxhighlight>  
<syntaxhighlight lang="lua">bool isPedBleeding ( ped thePed ) </syntaxhighlight>  
{{OOP||[[ped]]:isBleeding|bleeding|setPedBleeding}}
{{OOP||[[ped]]:isBleeding|bleeding|setPedBleeding}}


===Required Arguments===
===Required Arguments===
*'''thePed:''' the player or ped whose bleeding effect state you want to get.
*'''thePed:''' The [[player]] or [[ped]] whose bleeding effect state you want to get.


===Returns===
===Returns===
Returns ''true'' if the player or ped is bleeding, ''false'' otherwise.
Returns ''true'' if the [[player]] or [[ped]] is bleeding, ''false'' otherwise.


==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function checkBleeding()
function checkBleeding ()
   if isPedBleeding(localPlayer) then
   if isPedBleeding (localPlayer) then
       outputChatBox("The ped is bleeding")
       outputChatBox ("The ped is bleeding!")
   else
   else
       outputChatBox("The ped is not bleeding")
       outputChatBox ("The ped is not bleeding!")
   end
   end
end
end
addCommandHandler("cBleed", checkBleeding)
 
addCommandHandler ("checkbleed", checkBleeding)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 10:42, 20 September 2021

20935

Syntax

bool isPedBleeding ( ped thePed ) 

OOP Syntax Help! I don't understand this!

Method: ped:isBleeding(...)
Variable: .bleeding
Counterpart: setPedBleeding


Required Arguments

  • thePed: The player or ped whose bleeding effect state you want to get.

Returns

Returns true if the player or ped is bleeding, false otherwise.

Example

function checkBleeding ()
   if isPedBleeding (localPlayer) then
      outputChatBox ("The ped is bleeding!")
   else
      outputChatBox ("The ped is not bleeding!")
   end
end

addCommandHandler ("checkbleed", checkBleeding)

Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20935

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.8-9.20935" />

See Also