SetPedFootBloodEnabled

From Multi Theft Auto: Wiki
Revision as of 10:42, 18 September 2011 by Arran Fortuna (talk | contribs) (Created page with "__NOTOC__ {{Client function}} This function makes a players foot prints bloody. ==Syntax== <syntaxhighlight lang="lua">bool setPedFootBloodEnabled (element thePlayer, bool enabled)</syntaxhighlight> ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function makes a players foot prints bloody.

Syntax

bool setPedFootBloodEnabled (element thePlayer, bool enabled)

Required Arguments

  • thePlayer: The player to give bloody foot prints to.
  • enabled: Boolean specifying whether or not to have bloody feet.

Returns

Returns true if changing the players bloody feet status worked.

Example

This example gives the player bloody feet forever.

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

See Also