MWRP Collective
WIP - Gives all the functions and how to use them from our mwrp collective script
IsPlayerDead
Server:
lib.callback("mwrp_collective:client:IsPlayerDead", source, cb )
Server Example:
function IsPlayerDead(source)
local Player = QBCore.Functions.GetPlayer(source)
return ( lib.callback("mwrp_collective:client:IsPlayerDead", source, cb ) )
end
Client
exports.mwrp_collective:IsPlayerDead()
Client Example:
function IsPlayerDead()
return exports.mwrp_collective:IsPlayerDead()
end
Last updated