SetPedFootBloodEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Note)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
{{Disabled|This function doesn't work actually. See the [https://github.com/multitheftauto/mtasa-blue/issues/3654 issue] for updates and more information.}}
This function makes a [[ped|ped's]] footprints bloody.
This function makes a [[ped|ped's]] footprints bloody.



Revision as of 14:54, 17 August 2024

Dialog-warning.png Function has been disabled.

Reason/Note: This function doesn't work actually. See the issue for updates and more information.

This function makes a ped's footprints bloody.

Syntax

bool setPedFootBloodEnabled (element thePlayer, bool enabled)

Required Arguments

  • thePlayer: the ped to give bloody footprints to.
  • enabled: boolean specifying whether or not to have bloody feet.

Returns

Returns true if changing the ped's bloody feet status worked.

Example

This example gives the player bloody feet forever.

Click to collapse [-]
Client
setPedFootBloodEnabled(localPlayer, true)

See Also