Run menu check and anti-wanted every frame

This commit is contained in:
ElPumpo
2018-12-30 20:57:42 +01:00
parent 6c32c9ede0
commit c95ac3b87f
5 changed files with 31 additions and 6 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ ESX.Scaleform.ShowBreakingNews = function(title, msg, bottom, sec)
SetScaleformMovieAsNoLongerNeeded(scaleform)
end
ESX.Scaleform.ShowPopupWarning = function(title, msg, bottom, sec)
ESX.Scaleform.ShowPopupWarning = function(title, msg, footer, sec)
local scaleform = ESX.Scaleform.Utils.RequestScaleformMovie('POPUP_WARNING')
BeginScaleformMovieMethod(scaleform, 'SHOW_POPUP_WARNING')
@@ -55,7 +55,7 @@ ESX.Scaleform.ShowPopupWarning = function(title, msg, bottom, sec)
PushScaleformMovieMethodParameterFloat(500.0) -- black background
PushScaleformMovieMethodParameterString(title)
PushScaleformMovieMethodParameterString(msg)
PushScaleformMovieMethodParameterString(bottom)
PushScaleformMovieMethodParameterString(footer)
PushScaleformMovieMethodParameterBool(true)
EndScaleformMovieMethod()