Watermark script
A simple script that add a logo watermark and player id to your FiveM server.
Info
This script works for Qb-core and ESX
Sometimes if resource is started after starting the server it may not display player id, but to fix it player need to use
/watermark
Download
You can get this script from my GitHub
Screenshots
5 Likes
qb ewwww…
for ESX users:
ESX = exports["es_extended"]:getSharedObject()
local on = false
function display(bool)
on = bool
SetNuiFocus(false, false)
SendNUIMessage({
status = on,
id = GetPlayerServerId(PlayerId()),
})
end
RegisterCommand('watermark', function(source, args)
display(not on)
end)
RegisterNetEvent('esx:playerLoaded', function()
display(true)
end)
6 Likes