此部分函数可以用于向客户端发送消息通知。
不是所有的 Hud 资源都支持 theme,例如 ESX 默认 Hud 就仅支持默认主题,而 QB-Core 默认 Hud 是支持其他颜色主题的。
如果服务器安装了 bulletin 插件,则此函数会优先调用 bulletin 来发送通知。
Notify.Send
函数作用:向指定玩家发送通知
基本构造:ZeroDream.Notify.Send( playerId, message, theme )
示例代码:
RegisterCommand("sendmsg", function(source, args, raw)
ZeroDream.Notify.Send(source, "这是一条通知", "success")
end)
Notify.SendToAll
函数作用:向所有玩家发送通知
基本构造:ZeroDream.Notify.SendToAll( message, theme )
示例代码:
ZeroDream.Notify.SendToAll("服主太帅了", "success")