SetPedFootBloodEnabled

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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