Merge pull request #1057 from r3ps4J/feat/xplayer-showadvancednotification

feat(es_extended/server/classes/player.lua): Add showAdvancedNotification function
This commit is contained in:
Thekuca
2023-06-08 14:00:45 +02:00
committed by GitHub
@@ -576,6 +576,10 @@ function CreateExtendedPlayer(playerId, identifier, group, accounts, inventory,
self.triggerEvent('esx:showNotification', msg)
end
function self.showAdvancedNotification(sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
self.triggerEvent('esx:showAdvancedNotification', sender, subject, msg, textureDict, iconType, flash, saveToBrief, hudColorIndex)
end
function self.showHelpNotification(msg, thisFrame, beep, duration)
self.triggerEvent('esx:showHelpNotification', msg, thisFrame, beep, duration)
end