Skip to content

Instantly share code, notes, and snippets.

@MrBrax
Created May 7, 2015 20:38
Show Gist options
  • Save MrBrax/9aa9d80b9aa670cdbfc5 to your computer and use it in GitHub Desktop.
Save MrBrax/9aa9d80b9aa670cdbfc5 to your computer and use it in GitHub Desktop.
DarkRP Notify player table
function DarkRP.notify(ply, msgtype, len, msg)
if type(ply) ~= "table" and not IsValid(ply) then return end
umsg.Start("_Notify", ply)
umsg.String(msg)
umsg.Short(msgtype)
umsg.Long(len)
umsg.End()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment