FaZe Development
Discord
  • 👋WELCOME
    • 👋Welcome
  • 💸RESOURCES
    • 💼fd-jobselector
      • 🔄Installation
      • ⚙️Configuration
      • 🛠️Functions
        • Client
          • Notify
        • Server
          • GetPlayer
    • 🚘fd-carrental
      • 🔄Installation
      • ⚙️Configuration
      • 🛠️Functions
        • Client
          • Notify
          • GiveVehicleKeys
          • RemoveVehicleKeys
          • SetVehicleFuel
        • Server
          • GetPlayer
          • RemoveMoney
    • 🎁fd-steamreward
      • 🔄Installation
      • ⚙️Configuration
Powered by GitBook
On this page
  1. RESOURCES
  2. fd-jobselector
  3. Functions
  4. Client

Notify

Bult in System Notifications

FD.Notify = function(message, type, time)
    if Config.Framework == 'esx' or Config.Framework == 'oldesx' then
        TriggerEvent("esx:showNotification", message)
    elseif Config.Framework == 'qb' or Config.Framework == 'oldqb' then
        TriggerEvent('QBCore:Notify', message, type, time or 3000)
    else
        -- Add Functions Here
    end
end
PreviousClientNextServer

Last updated 1 year ago

💸
💼
🛠️