Revert "chore: update copyright year"

This commit is contained in:
Arctos2win
2025-01-08 14:17:39 +01:00
committed by GitHub
parent 1ff7898655
commit 97aaf58a02
46 changed files with 789 additions and 809 deletions
-22
View File
@@ -1,22 +0,0 @@
### Description
<!-- Explain What this PR does -->
---
### Motivation
<!-- Explain why you are making this PR -->
---
### **Implementation Details**
<!-- Explain how your implemenation meets your goal -->
---
### Usage Example
<!-- If you are adding or editing functions/events show usage examples -->
---
### PR Checklist
- [] My commit messages and PR title follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) standard.
- [] My changes have been tested locally and function as expected.
- [] My PR does not introduce any breaking changes.
- [] I have provided a clear explanation of what my PR does, including the reasoning behind the changes and any relevant context.
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
cron cron
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
cron Copyright (C) 2015-2025 Jérémie N'gadi cron Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -28,7 +28,7 @@ TriggerEvent('cron:runAt', 18, 30, CronTask)
cron - run tasks at specific intervals! cron - run tasks at specific intervals!
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -4,6 +4,6 @@ game 'gta5'
author 'ESX-Framework' author 'ESX-Framework'
description 'Allows resources to Run tasks at specific intervals.' description 'Allows resources to Run tasks at specific intervals.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
server_script 'server/main.lua' server_script 'server/main.lua'
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
es_extended es_extended
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
es_extended Copyright (C) 2015-2025 Jérémie N'gadi es_extended Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -4,7 +4,7 @@
es_extended es_extended
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+43 -41
View File
@@ -2,12 +2,7 @@ ESX.Scaleform = {}
ESX.Scaleform.Utils = {} ESX.Scaleform.Utils = {}
function ESX.Scaleform.ShowFreemodeMessage(title, msg, sec) function ESX.Scaleform.ShowFreemodeMessage(title, msg, sec)
local scaleform = ESX.Scaleform.Utils.RequestScaleformMovie("MP_BIG_MESSAGE_FREEMODE") local scaleform = ESX.Scaleform.Utils.RunMethod("MP_BIG_MESSAGE_FREEMODE", "SHOW_SHARD_WASTED_MP_MESSAGE", false, title, msg)
BeginScaleformMovieMethod(scaleform, "SHOW_SHARD_WASTED_MP_MESSAGE")
ScaleformMovieMethodAddParamTextureNameString(title)
ScaleformMovieMethodAddParamTextureNameString(msg)
EndScaleformMovieMethod()
while sec > 0 do while sec > 0 do
Wait(0) Wait(0)
@@ -20,25 +15,9 @@ function ESX.Scaleform.ShowFreemodeMessage(title, msg, sec)
end end
function ESX.Scaleform.ShowBreakingNews(title, msg, bottom, sec) function ESX.Scaleform.ShowBreakingNews(title, msg, bottom, sec)
local scaleform = ESX.Scaleform.Utils.RequestScaleformMovie("BREAKING_NEWS") local scaleform = ESX.Scaleform.Utils.RunMethod("BREAKING_NEWS", "SET_TEXT", false, msg, bottom)
ESX.Scaleform.Utils.RunMethod(scaleform, "SET_SCROLL_TEXT", false, 0, 0, title)
BeginScaleformMovieMethod(scaleform, "SET_TEXT") ESX.Scaleform.Utils.RunMethod(scaleform, "DISPLAY_SCROLL_TEXT", false, 0, 0)
ScaleformMovieMethodAddParamTextureNameString(msg)
ScaleformMovieMethodAddParamTextureNameString(bottom)
EndScaleformMovieMethod()
BeginScaleformMovieMethod(scaleform, "SET_SCROLL_TEXT")
ScaleformMovieMethodAddParamInt(0) -- top ticker
ScaleformMovieMethodAddParamInt(0) -- Since this is the first string, start at 0
ScaleformMovieMethodAddParamTextureNameString(title)
EndScaleformMovieMethod()
BeginScaleformMovieMethod(scaleform, "DISPLAY_SCROLL_TEXT")
ScaleformMovieMethodAddParamInt(0) -- Top ticker
ScaleformMovieMethodAddParamInt(0) -- Index of string
EndScaleformMovieMethod()
while sec > 0 do while sec > 0 do
Wait(0) Wait(0)
@@ -51,17 +30,7 @@ function ESX.Scaleform.ShowBreakingNews(title, msg, bottom, sec)
end end
function ESX.Scaleform.ShowPopupWarning(title, msg, bottom, sec) function ESX.Scaleform.ShowPopupWarning(title, msg, bottom, sec)
local scaleform = ESX.Scaleform.Utils.RequestScaleformMovie("POPUP_WARNING") local scaleform = ESX.Scaleform.Utils.RunMethod("POPUP_WARNING", "SHOW_POPUP_WARNING", false, 500.0, title, msg, bottom, true)
BeginScaleformMovieMethod(scaleform, "SHOW_POPUP_WARNING")
ScaleformMovieMethodAddParamFloat(500.0) -- black background
ScaleformMovieMethodAddParamTextureNameString(title)
ScaleformMovieMethodAddParamTextureNameString(msg)
ScaleformMovieMethodAddParamTextureNameString(bottom)
ScaleformMovieMethodAddParamBool(true)
EndScaleformMovieMethod()
while sec > 0 do while sec > 0 do
Wait(0) Wait(0)
@@ -74,11 +43,7 @@ function ESX.Scaleform.ShowPopupWarning(title, msg, bottom, sec)
end end
function ESX.Scaleform.ShowTrafficMovie(sec) function ESX.Scaleform.ShowTrafficMovie(sec)
local scaleform = ESX.Scaleform.Utils.RequestScaleformMovie("TRAFFIC_CAM") local scaleform = ESX.Scaleform.Utils.RunMethod("TRAFFIC_CAM", "PLAY_CAM_MOVIE", false)
BeginScaleformMovieMethod(scaleform, "PLAY_CAM_MOVIE")
EndScaleformMovieMethod()
while sec > 0 do while sec > 0 do
Wait(0) Wait(0)
@@ -99,3 +64,40 @@ function ESX.Scaleform.Utils.RequestScaleformMovie(movie)
return scaleform return scaleform
end end
--- Executes a method on a scaleform movie with optional arguments and return value.
--- The caller is responsible for disposing of the scaleform using `SetScaleformMovieAsNoLongerNeeded`.
---@param scaleform number|string # Scaleform handle or name to request the scaleform movie
---@param methodName string # The method name to call on the scaleform
---@param returnValue? boolean # Whether to return the value from the method
---@param ... number|string|boolean # Arguments to pass to the method
---@return number, number? # The scaleform handle, and the return value if `returnValue` is true
function ESX.Scaleform.Utils.RunMethod(scaleform, methodName, returnValue, ...)
scaleform = type(scaleform) == "number" and scaleform or ESX.Scaleform.Utils.RequestScaleformMovie(scaleform)
BeginScaleformMovieMethod(scaleform, methodName)
local args = { ... }
for i, arg in ipairs(args) do
local typeArg = type(arg)
if typeArg == "number" then
if math.type(arg) == "float" then
ScaleformMovieMethodAddParamFloat(arg)
else
ScaleformMovieMethodAddParamInt(arg)
end
elseif typeArg == "string" then
ScaleformMovieMethodAddParamTextureNameString(arg)
elseif typeArg == "boolean" then
ScaleformMovieMethodAddParamBool(arg)
end
end
if returnValue then
return scaleform, EndScaleformMovieMethodReturnValue()
end
EndScaleformMovieMethod()
return scaleform
end
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'cerulean'
game 'gta5' game 'gta5'
description 'The Core resource that provides the functionalities for all other resources.' description 'The Core resource that provides the functionalities for all other resources.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
shared_scripts { shared_scripts {
'locale.lua', 'locale.lua',
+1 -1
View File
@@ -6,7 +6,7 @@ A ESX-Based Chat-theme for your server
esx_chat_theme - ESX Chat Theme esx_chat_theme - ESX Chat Theme
Copyright (C) 2025 Jérémie N'gadi Copyright (C) 2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -1,4 +1,4 @@
version '1.12.3' version '1.12.2'
author 'ESX-Framework' author 'ESX-Framework'
description 'A ESX Stylised theme for the chat resource.' description 'A ESX Stylised theme for the chat resource.'
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_context esx_context
Copyright (C) 2022-2025 ESX Framework Copyright (C) 2022-2024 ESX Framework
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_context Copyright (C) 2022-2025 ESX Framework esx_context Copyright (C) 2022-2024 ESX Framework
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -6,7 +6,7 @@ A elegant, easy to use Context Menu system to make User Interactions clean and h
esx_context esx_context
Copyright (C) 2022-2025 ESX Framework Copyright (C) 2022-2024 ESX Framework
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -4,7 +4,7 @@ game 'gta5'
author 'ESX-Framework & Brayden' author 'ESX-Framework & Brayden'
description 'A simplistic context menu for ESX.' description 'A simplistic context menu for ESX.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
ui_page 'index.html' ui_page 'index.html'
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_identity esx_identity
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_identity Copyright (C) 2015-2025 Jérémie N'gadi esx_identity Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -21,7 +21,7 @@ A Core Resource that Allows the player to Pick their characters, Name, Gender, H
esx_identity - Make your Character a Person! esx_identity - Make your Character a Person!
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'Allows the player to Pick their characters: Name, Gender, Height and Date-of-birth.' description 'Allows the player to Pick their characters: Name, Gender, Height and Date-of-birth.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
shared_scripts { shared_scripts {
'@es_extended/imports.lua', '@es_extended/imports.lua',
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_loadingscreen esx_loadingscreen
Copyright (C) 2020-2025 ESX Framework Copyright (C) 2020-2024 ESX Framework
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_loadingscreen Copyright (C) 2020-2025 ESX Framework esx_loadingscreen Copyright (C) 2020-2024 ESX Framework
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -6,7 +6,7 @@ A simple but beautiful Loading Screen for your server!
esx_loadingscreen - Loading in style! esx_loadingscreen - Loading in style!
Copyright (C) 2020-2025 ESX Framework Copyright (C) 2020-2024 ESX Framework
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -3,7 +3,7 @@ game 'common'
fx_version 'cerulean' fx_version 'cerulean'
author 'ESX-Framework' author 'ESX-Framework'
description 'Allows resources to Run tasks at specific intervals.' description 'Allows resources to Run tasks at specific intervals.'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
loadscreen 'index.html' loadscreen 'index.html'
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_menu_default esx_menu_default
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_menu_default Copyright (C) 2015-2025 Jérémie N'gadi esx_menu_default Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -9,7 +9,7 @@ A default List type menu for ESX.
esx_menu_default - Default Menu! esx_menu_default - Default Menu!
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'A basic menu system for ESX Legacy.' description 'A basic menu system for ESX Legacy.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
client_scripts { '@es_extended/imports.lua', 'client/main.lua' } client_scripts { '@es_extended/imports.lua', 'client/main.lua' }
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_menu_dialog esx_menu_dialog
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_menu_dialog Copyright (C) 2015-2025 Jérémie N'gadi esx_menu_dialog Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+2 -2
View File
@@ -12,10 +12,10 @@ start esx_menu_dialog
### License ### License
esx_menu_dialog - input dialog for ESX esx_menu_dialog - input dialog for ESX
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details. This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/. You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'A basic input dialog for ESX Legacy.' description 'A basic input dialog for ESX Legacy.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
client_scripts { client_scripts {
'@es_extended/imports.lua', '@es_extended/imports.lua',
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_menu_list esx_menu_list
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_menu_list Copyright (C) 2015-2025 Jérémie N'gadi esx_menu_list Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+2 -2
View File
@@ -5,10 +5,10 @@ Advanced menu inputs for ESX
### License ### License
esx_menu_list - advanced menu inputs for ESX esx_menu_list - advanced menu inputs for ESX
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details. This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/. You should have received a copy Of the GNU General Public License along with this program. If Not, see http://www.gnu.org/licenses/.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'A basic table-based menu system for ESX Legacy.' description 'A basic table-based menu system for ESX Legacy.'
lua54 'yes' lua54 'yes'
version '1.12.3' version '1.12.2'
client_scripts { client_scripts {
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_multicharacter esx_multicharacter
Copyright (C) 2022-2025 ESX Framework, Linden, KASH Copyright (C) 2022-2024 ESX Framework, Linden, KASH
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_multicharacter Copyright (C) 2022-2025 ESX Framework, Linden, KASH esx_multicharacter Copyright (C) 2022-2024 ESX Framework, Linden, KASH
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'cerulean'
game 'gta5' game 'gta5'
author 'ESX-Framework - Linden - KASH' author 'ESX-Framework - Linden - KASH'
description 'Allows players to have multiple characters on the same account.' description 'Allows players to have multiple characters on the same account.'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
dependencies { 'es_extended', 'esx_context', 'esx_identity', 'esx_skin' } dependencies { 'es_extended', 'esx_context', 'esx_identity', 'esx_skin' }
+1 -1
View File
@@ -21,7 +21,7 @@ A Simplistic system, that allows Players to have multiple Characters, which can
<tr><td> <tr><td>
Official Multi-Character system for ESX Legacy Official Multi-Character system for ESX Legacy
Copyright © 2022-2025 Linden, ESX-Framework and KASH Copyright © 2022-2024 Linden, ESX-Framework and KASH
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_notify esx_notify
Copyright (C) 2022-2025 ESX Framework Copyright (C) 2022-2024 ESX Framework
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_notify Copyright (C) 2022-2025 ESX Framework esx_notify Copyright (C) 2022-2024 ESX Framework
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -2,7 +2,7 @@ fx_version 'adamant'
lua54 'yes' lua54 'yes'
game 'gta5' game 'gta5'
version '1.12.3' version '1.12.2'
author 'ESX-Framework' author 'ESX-Framework'
description 'A beautiful and simple NUI notification system for ESX' description 'A beautiful and simple NUI notification system for ESX'
+1 -1
View File
@@ -55,7 +55,7 @@ ESX.ShowNotification("I i ~r~love~s~ donuts", "success", 3000)
esx_notify- Notify! esx_notify- Notify!
Copyright (C) 2022-2025 ESX-Framework Copyright (C) 2022-2024 ESX-Framework
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
author 'ESX-Framework' author 'ESX-Framework'
description 'A beautiful and simple NUI progress bar for ESX' description 'A beautiful and simple NUI progress bar for ESX'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
client_scripts { 'Progress.lua' } client_scripts { 'Progress.lua' }
+15 -15
View File
@@ -3,12 +3,12 @@
* ESX Function * ESX Function
```lua ```lua
ESX.Progressbar("test", 25000,{ ESX.Progressbar("test", 25000,{
FreezePlayer = false, FreezePlayer = false,
animation ={ animation ={
type = "anim", type = "anim",
dict = "mini@prostitutes@sexlow_veh", dict = "mini@prostitutes@sexlow_veh",
lib ="low_car_sex_to_prop_p2_player" lib ="low_car_sex_to_prop_p2_player"
}, },
onFinish = function() onFinish = function()
--Code here --Code here
end}) end})
@@ -16,13 +16,13 @@
``` ```
* Export * Export
```lua ```lua
exports["esx_progressbar"]:Progressbar("Unlocking Storage", 3000,{ exports["esx_progressbar"]:Progressbar("Unlocking Storage", 3000,{
FreezePlayer = true, FreezePlayer = true,
animation ={ animation ={
type = "anim", type = "anim",
dict = "anim@mp_player_intmenu@key_fob@", dict = "anim@mp_player_intmenu@key_fob@",
lib ="fob_click" lib ="fob_click"
}, },
onFinish = function() onFinish = function()
@@ -31,13 +31,13 @@
``` ```
* Cancel * Cancel
```lua ```lua
ESX.Progressbar("Unlocking Storage", 3000,{ ESX.Progressbar("Unlocking Storage", 3000,{
FreezePlayer = true, FreezePlayer = true,
animation ={ animation ={
type = "anim", type = "anim",
dict = "anim@mp_player_intmenu@key_fob@", dict = "anim@mp_player_intmenu@key_fob@",
lib ="fob_click" lib ="fob_click"
}, },
onFinish = function() onFinish = function()
@@ -49,13 +49,13 @@
``` ```
* Scenario * Scenario
```lua ```lua
ESX.Progressbar("Unlocking Storage", 3000,{ ESX.Progressbar("Unlocking Storage", 3000,{
FreezePlayer = true, FreezePlayer = true,
animation ={ animation ={
type = "Scenario", type = "Scenario",
Scenario = "PROP_HUMAN_BUM_BIN", Scenario = "PROP_HUMAN_BUM_BIN",
}, },
onFinish = function() onFinish = function()
--Code here --Code here
@@ -69,10 +69,10 @@
esx_progressbar esx_progressbar
Copyright (C) 2022-2025 ESX-Framework Copyright (C) 2022-2024 ESX-Framework
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details. This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License For more details.
You should have received a copy Of the GNU General Public License along with this program. If Not, see <http://www.gnu.org/licenses/>. You should have received a copy Of the GNU General Public License along with this program. If Not, see <http://www.gnu.org/licenses/>.
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_skin esx_skin
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_skin Copyright (C) 2015-2025 Jérémie N'gadi esx_skin Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -32,7 +32,7 @@ start esx_skin
### License ### License
esx_skin - skin selector for ESX esx_skin - skin selector for ESX
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -2,7 +2,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'Allows players to customise their character\'s appearance' description 'Allows players to customise their character\'s appearance'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
shared_scripts { shared_scripts {
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
esx_textui esx_textui
Copyright (C) 2015-2025 ESX Framework Copyright (C) 2015-2024 ESX Framework
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
esx_textui Copyright (C) 2022-2025 ESX Framework esx_textui Copyright (C) 2022-2024 ESX Framework
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -3,7 +3,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
author 'ESX-Framework' author 'ESX-Framework'
description 'A beautiful and simple Persistent Notification system for ESX.' description 'A beautiful and simple Persistent Notification system for ESX.'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
client_scripts { 'TextUI.lua' } client_scripts { 'TextUI.lua' }
+1 -1
View File
@@ -43,7 +43,7 @@ ESX.TextUI("i ~r~love~s~ donuts", "error")
esx_textui - Persistent Notifications esx_textui - Persistent Notifications
Copyright (C) 2022-2025 ESX Framework Copyright (C) 2022-2024 ESX Framework
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+2 -2
View File
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
skinchanger skinchanger
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
skinchanger Copyright (C) 2015-2025 Jérémie N'gadi skinchanger Copyright (C) 2015-2024 Jérémie N'gadi
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+1 -1
View File
@@ -73,7 +73,7 @@ end)
skinchanger - Own your skin! skinchanger - Own your skin!
Copyright (C) 2015-2025 Jérémie N'gadi Copyright (C) 2015-2024 Jérémie N'gadi
This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version. This program Is free software: you can redistribute it And/Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option) any later version.
+1 -1
View File
@@ -2,7 +2,7 @@ fx_version 'adamant'
game 'gta5' game 'gta5'
description 'Saves/loads character appearances for ESX Legacy.' description 'Saves/loads character appearances for ESX Legacy.'
version '1.12.3' version '1.12.2'
lua54 'yes' lua54 'yes'
client_scripts { client_scripts {