Drakath Posted January 10, 2014 Posted January 10, 2014 It would be nice if MTA had Client side function to check if client pedestrian is dead.
Castillo Posted January 10, 2014 Posted January 10, 2014 You can just check the ped health with getElementHealth. function isClientPedDead ( thePed ) if isElement ( thePed ) then return ( getElementHealth ( thePed ) <= 0 ) else return false end end
Grafu Posted January 11, 2014 Posted January 11, 2014 And suddenly... https://code.google.com/p/mtasa-blue/so ... ail?r=6054
Recommended Posts