Hi,

I am new to this whole fivem server thing and I am trying to remove the push notifications above the Radar.
The ones with: ‘Player joined the server’, ‘Player left the server’ etc.

I got some scripts already in my server but I can’t figure out how to remove those notifications.
Can someone help me please?

(PS: I am not sure if this is in the right topic section or not so sorry if it is placed wrong)

typically it is a resource or mod menu that you are using that shows these notifications. Have you tried looking to see if this could be at play?

We are not using any mod menu but I have already a lot of resources… Are you maybe able to point out which one that could be the issue? (It’s a dutch server so some of these maps are in dutch but they just contain addon cars)

You literally have vMenu… Please at least try to look.

1 Like

Haha thanks for noticing that before me as i was wondering if it was worth me spending the time looking through them all or just saying stop them one by one until it stops happening then you know what the cause was. Thank you

Sorry for slow reply it is a very busy time for me at the moment

1 Like

I have vMenu, how can I turn off notifications?

It’s in the vMenu options… like I said 2 years ago, at least try to look

Well, we 100% don’t have vMenu, but still get the notifications at the bottom left. Any help?

Search your scripts for playerJoining and playerDropped events.

He was asking for how to turn it off server sided

  1. Enter your server resource folder
  2. Find the ‘playeranmes’ folder
  3. Open the ‘playeranmes. lua’ file
  4. Search for code similar to the following:
AddEventHandler('onPlayerJoining', function(name)
--Notification code
end)
   
AddEventHandler('onPlayerDropped', function(reason)
--Notification code
end)