Aller au contenu principal
FiveMX
Boutique
Scripts
MLOs
Serveurs complets
Mods gratuits
Outils
Guides
Tous les produits
FiveMX

Commencez à construire votre serveur aujourd'hui.

Ressources FiveM sélectionnées, livraison instantanée, mods gratuits de départ et guides pratiques dans une marketplace apaisée.

Parcourir la boutiquesupport@fivemx.com

Boutique

  • Boutique
  • Tous les produits
  • Mods gratuits
  • Meilleurs scripts & mods
  • Scripts FiveM

Frameworks

  • Scripts QBCore
  • Scripts ESX
  • QBox
  • Standalone

Communauté

  • Blog
  • Assistance
  • Créateurs
  • Affiliation

Mentions légales

  • Politique de confidentialité
  • Conditions d'utilisation
  • Politique de remboursement
  • Livraison numérique
  • Politique des cookies
  • Conformité RGPD
  • DMCA
  • Mentions légales
  • Charte éditoriale
© 2026 FiveMX. Tous droits réservés.·FiveMX n'est pas affilié à Rockstar Games, Take-Two Interactive ou CFX.re. Toutes les marques sont la propriété de leurs détenteurs respectifs.
GitHubDiscordDocs

7 images produit disponibles.

Compatibilité:

iNotificationV3

Advanced notification system with customizable messages, durations, and styles. Supports client-side triggers for professional UI notifications.

Accès instantané

Compatibilité, installation et preuves en un coup d'œil

Utilisez les informations publiées sur cette page pour confirmer si iNotificationV3 correspond à votre serveur avant l'achat.

Compatibilité

Frameworks
ESX
Catégorie
HUDs

Installation & prérequis

Processus d'installation
Télécharger → dossier resources → ensure dans server.cfg
Prérequis
Publié sur cette page
Taille du fichier
1.5 MB

Preuves & questions acheteurs

Avis
Aucun avis pour le moment
Questions répondues
Posez une question avant d'acheter

Seuls les faits publiés sur cette page doivent être considérés comme confirmés. Si vous avez besoin de plus de détails, consultez la description, les prérequis, le journal des modifications, les avis et les questions produit avant l'achat.

Politique de remboursement sous 14 jours
Paiement sécurisé
9,89 €
Accès immédiat aux fichiers après le paiement
Assistance et politique de remboursement visibles avant le paiement
Fonctionne avec esx
  • Accès instantané
  • Chiffré SSL
  • Carte, Klarna, wallets
Frameworks

esx

Prérequis

Publié sur cette page

Aperçu

Disponible

Carte, Klarna et wallets pris en charge via Stripe. D'autres moyens de paiement locaux peuvent apparaître selon votre région.

Contacter le support avant achatLire la politique de remboursement

Attente de support

Le support couvre l'accès au téléchargement, les fichiers livrés manquants et les questions basées sur les notes d'installation publiées.

L'installation personnalisée, la conversion de framework, la mise en place sur serveur en production et les développements sur mesure ne sont pas inclus sauf mention contraire sur la page produit.

Contactez-nous avant l'achat si votre serveur utilise des ressources de framework, d'inventaire ou de base de données fortement modifiées.

Vous construisez un serveur plus complet ?Comparez les packs sélectionnés avant le paiement si vous avez besoin de plusieurs scripts compatibles.Voir les packs FiveM

Acheter si cela fait gagner du temps de configuration

Utilisez cette checklist pour vérifier rapidement si la ressource correspond à votre serveur, votre framework et vos attentes de support.

Gain pour l'administrateur serveur

iNotificationV3 vise à réduire HUDs au lieu de vous obliger à reconstruire le même système.

Compatibilité

Fonctionne avec esx. Vérifiez le bloc des prérequis avant de l'ajouter à un serveur en production.

Confiance avant achat

Téléchargement instantané, paiement Stripe, accès au support et contexte de remboursement sont affichés avant le paiement.

Éléments de décision

Prérequis, détails d'installation, Vidéo d'aperçu, Questions produit

Description

https://www.youtube.com/watch?v=gC2g8zfED68

? Installation of Notifications

  1. Drag the iNotificationV3 folder into your resources.
  2. Add the line ensure iNotificationV3 to your server.cfg.

? Text Options

  1. If you include ~h~ in text, it will make the text bold (example: ~h~Trying bold text~h~).
  2. If you include ~i~ in text, it will make the text italic (example: ~i~Trying italic text~i~).
  3. If you include
    in text, it will create a line break (example: line 1
    line 2
    ).

? Example Notifications (Client/Server)

Client Side

-- showNotification
TriggerEvent(iNotificationV3:showNotification, This is a message, 5, left);

-- showAdvancedNotification
TriggerEvent(iNotificationV3:showAdvancedNotification, Title, Subtitle, this is a message, CHAR_MP_BIKER_BOSS, 7, left);

-- showHelpNotification
TriggerEvent(iNotificationV3:showHelpNotification, Press ~INPUT_PICKUP~ to ..., 10, right);

-- showAdvancedHelpNotification
TriggerEvent(iNotificationV3:showAdvancedHelpNotification, Interactions, Press ~INPUT_PICKUP~ to trigger ..., CHAR_MP_BRUCIE, 8, left);

Server Side

-- showNotification
TriggerClientEvent(iNotificationV3:showNotification, source, This is a message, 5, left);

-- showAdvancedNotification
TriggerClientEvent(iNotificationV3:showAdvancedNotification, source, Title, Subtitle, this is a message, CHAR_MP_BIKER_BOSS, 7, left);

-- showHelpNotification
TriggerClientEvent(iNotificationV3:showHelpNotification, source, Press ~INPUT_PICKUP~ to ..., 10, right);

-- showAdvancedHelpNotification
TriggerClientEvent(iNotificationV3:showAdvancedHelpNotification, source, Interactions, Press ~INPUT_PICKUP~ to trigger ..., CHAR_MP_BRUCIE, 8, left);
⚠️ Tip: We recommend not modifying all your notifications through ESX. Instead, modify them individually within each script where they appear for better control (position, duration, etc.).

? Modify All Notifications in Your ESX Framework Easily

  1. Go to the folder ex_extended/client.
  2. Open the file functions.lua.
  3. Follow the modification steps below.

? Modification

Replace this code:
ESX.ShowNotification = function(msg)
    SetNotificationTextEntry('STRING');
    AddTextComponentString(msg);
    DrawNotification(0, 1);
end

ESX.ShowAdvancedNotification = function(sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
    if saveToBrief == nil then saveToBrief = true end
    AddTextEntry('esxAdvancedNotification', msg)
    BeginTextCommandThefeedPost('esxAdvancedNotification')
    if hudColorIndex then ThefeedNextPostBackgroundColor(hudColorIndex) end
    EndTextCommandThefeedPostMessagetext(textureDict, textureDict, false, iconType, sender, subject)
    EndTextCommandThefeedPostTicker(flash or false, saveToBrief)
end

ESX.ShowHelpNotification = function(msg, thisFrame, beep, duration)
    AddTextEntry('esxHelpNotification', msg)

    if thisFrame then
        DisplayHelpTextThisFrame('esxHelpNotification', false)
    else
        if beep == nil then beep = true end
        BeginTextCommandDisplayHelp('esxHelpNotification')
        EndTextCommandDisplayHelp(0, false, beep, duration or -1)
    end
end
With this code:
ESX.ShowNotification = function(msg, time, position)
    TriggerEvent(iNotificationV3:showNotification, msg, time or 12, position or left);
end

ESX.ShowAdvancedNotification = function(sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
    TriggerEvent(iNotificationV3:showAdvancedNotification, sender, subject, msg, textureDict, 12, left)
end

ESX.ShowHelpNotification = function(msg, thisFrame, beep, duration)
    TriggerEvent(iNotificationV3:showHelpNotification, msg, 12, left);
end

➕ Add Notifications Easily

showNotification

Client

-- message: string (message content) (⚠️ Required)
-- duration: number (seconds the notification stays visible) (❌ Optional)
-- location: string[left, middle, right] (screen position) (❌ Optional)
exports[iNotificationV3]:showNotification(message, duration, location);
-- or:
TriggerEvent(iNotificationV3:showNotification, message, duration, location);

Server

TriggerClientEvent(iNotificationV3:showNotification, playerId or source, message, duration, location)

showAdvancedNotification

Client

-- title: string (title of notification) (❌ Optional)
-- subtitle: string (subtitle) (❌ Optional)
-- message: string (message content) (⚠️ Required)
-- duration: number (display duration) (❌ Optional)
-- location: string[left, middle, right] (screen position) (❌ Optional)
-- icon: string (GTA 5 notification image or custom image name from assets/images/) (❌ Optional)

exports[iNotificationV3]:showAdvancedNotification(title, subtitle, message, icon, duration, location);
-- or:
TriggerEvent(iNotificationV3:showAdvancedNotification, title, subtitle, message, icon, duration, location);

Server

local inotif = iNotificationV3:showAdvancedNotification;
TriggerClientEvent(inotif, playerId or source, title, subtitle, message, icon, duration, location)

showHelpNotification

Client

exports[iNotificationV3]:showHelpNotification(message, duration, location);
-- or:
TriggerEvent(iNotificationV3:showHelpNotification, message, duration, location);

Server

local inotif = iNotificationV3:showHelpNotification;
TriggerClientEvent(inotif, playerId or source, message, duration, location)

showAdvancedHelpNotification (Preview)

Client

exports[iNotificationV3]:showAdvancedHelpNotification(title, message, icon, duration, location);
-- or:
TriggerEvent(iNotificationV3:showAdvancedHelpNotification, title, message, icon, duration, location);

Server

local inotif = iNotificationV3:showAdvancedHelpNotification;
TriggerClientEvent(inotif, playerId or source, title, message, icon, duration, location)

✅ Done! Your file has now been fully translated into English while preserving code blocks and formatting. Would you like me to generate an English-markdown version of this file (readme_en.md) that you can download?

Notes d'installation

Requires a FiveM server, ESX, access to server resources, and permission to restart the resource after configuration.
DescriptionPrérequisVidéo d'aperçu
Accueil
Boutique
HUDs
HUDs
ESX
Processus de vérification

Caractéristiques Principales

  • Four notification types

    Supports showNotification, showAdvancedNotification, showHelpNotification, and showAdvancedHelpNotification for varied notification displays.

  • Configurable display duration

    Set how many seconds each notification stays visible on screen with optional duration parameters.

  • Three screen positions

    Display notifications at left, middle, or right positions on the screen.

  • Text formatting options

    Use ~h~ for bold text, ~i~ for italic text, and <br/> tags to create line breaks within notifications.

  • GTA 5 icon and custom image support

    Display notifications with GTA 5 notification images or custom image names from the assets/images/ folder.

Questions Fréquemment Posées

Processus de vérification

Questions & réponses de la communauté

0 questions

Aucune question

Soyez le premier à poser une question !

0/500 caractères (minimum 10)

Votre question sera examinée avant d'être publiée.

Produits associés

3,87 €
16,35 €
3,87 €
19,80 €

Related Tutorials & Guides

Learn more about setting up, configuring, and using this type of resource.

ESX Admin Commands — Complete 2026 Reference

ESX Admin Commands — Complete 2026 Reference

Complete reference of ESX admin commands for FiveM RP servers — player management, vehicle spawning, money & jobs, world manipulation, plus a self-hosting setup guide for setting your first admin.

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

Choosing a framework is the single most consequential decision when building a FiveM server. It determines which scripts you can use, how your developers write code, the…

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX is the original FiveM roleplay framework, and despite newer alternatives, it remains one of the most widely used frameworks in 2026.

Continuez à construire votre serveur FiveM

Utilisez ce produit dans une configuration plus large. Explorez les catégories associées, les frameworks alternatifs, les packs premium et les téléchargements gratuits complémentaires.

Explorer Phone ScriptsExplorer Inventory ScriptsParcourir tous les scriptsScripts HUDsScripts esxEssayer QBCore à la placeEssayer QBox à la placeMods FiveM gratuitsComparer les packs
HUD Coords

HUD Coords

JG HUD

JG HUD

Simple ESX HUD

Simple ESX HUD

Vehicle Shop (Dealership) HUD 2.0

Vehicle Shop (Dealership) HUD 2.0