SetPedBleeding

From Multi Theft Auto: Wiki
Revision as of 12:16, 31 August 2021 by StrixG (talk | contribs) (Created page with "{{Client function}} __NOTOC__ {{New feature/item|3.0159|1.5.8|20935|This function allows you to set player's or ped's bleeding effect.}} ==Syntax== <syntax...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function allows you to set player's or ped's bleeding effect.

Syntax

bool setPedBleeding( ped thePed, bool bleeding ) 

Required Arguments

  • thePed: the player or ped whose bleeding effect you want to set of.
  • bleeding: boolean specifying whether the player or ped is bleeding or not.

Returns

Returns true if the bleeding state was successfully set, error is raised otherwise.

Example

Accessories-text-editor.png Script Example Missing Function SetPedBleeding needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.
-- TODO


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