Notification Configuration
Shared.NotifyType
RQ-Dogs allows you to completely customize the way notifications are sent to players. By default, notifications can be sent via ox_lib, chat, qb-core, okok or bulletin, but can be setup to work with any notification system. If you wish to use a custom notification system, you must change the notify
function in both the server/sv_open.lua
file and client/cl_open.lua
file.
Notification types are passed to this function as either error
or info
.
Shared.NotifyType = "ox_lib" -- ox_lib (Standard Notifications), chat (messages in chat), qb (qb-core notify function), okok (okok-notify), bulletin (avail on github), custom (modify in cl_notify and sv_notify)
Last updated