You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
Hello, is this possible to align the notifications position by player safezone size? Because i took all of the info needed from client to js, but its not working, but on my hud its working just perfect :D I'm trying to put the needed style on bulletin_container, because i can't find anything else where can i put that style, any help?
Hello, is this possible to align the notifications position by player safezone size? Because i took all of the info needed from client to js, but its not working, but on my hud its working just perfect :D I'm trying to put the needed style on bulletin_container, because i can't find anything else where can i put that style, any help?
JS
this.safezone = safeZoneSize const f = safeZoneSize * 0.5 const tbMargin = window.screen.height * f; const lrMargin = window.screen.width * f; document.getElementById('bulletin_container').style.margin =
${tbMargin}px ${lrMargin}px``client
function AddNotification(data) data.config = Config data.safeZoneSize = 1.0 - GetSafeZoneSize() SendNUIMessage(data); end
The text was updated successfully, but these errors were encountered: