Account stolen
Triggered after a player steals something from the actions menu, only if you use the default player search/rob, it won't work if you replaced it
RegisterNetEvent("jobs_creator:actions:accountStolen", function(playerId, targetId, accountName, amount)
end)Parameters
Name
Data Type
Description
Example
RegisterNetEvent("jobs_creator:actions:accountStolen", function(playerId, targetId, accountName, amount)
print(GetPlayerName(playerId) .. " has stolen " .. amount .. " " .. accountName .. " from " .. GetPlayerName(targetId))
end)Last updated