Adding this can make it easier for people to add custom staff tracking without the need to modify the addon to track staff finishing reports etc.
hook.Add("RDMManagerStatusUpdated", "Example", function(
ply, -- The player who updated the report status,
index, -- The report index, can be used to track unique reports so staff can't keep setting to finished to add to activity
status, -- The new report status
previous -- The previous report status
)
-- Custom code to update database etc...
end)
Adding this can make it easier for people to add custom staff tracking without the need to modify the addon to track staff finishing reports etc.