IsPedFootBloodEnabled | Multi Theft Auto: Wiki Skip to content

IsPedFootBloodEnabled

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function checks if player feets are bleeding.

Syntax

IsPedFootBloodEnabled ( )

Code Examples

client
addCommandHandler("bleeding", function()
local bleeding = isPedFootBloodEnabled(localPlayer)
outputChatBox("I am " .. (not bleeding and "not" or '') .. " bleeding")
end)

See Also