-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- prometheus.lua -- -- This file is the entrypoint for Prometheus -- Configure package.path for require local function script_path() local str = debug.getinfo(2, "S").source:sub(2) return str:match("(.*[/%\\])") end local oldPkgPath = package.path; package.path = script_path() .. "?.lua;" .. package.path; -- Math.random Fix for Lua5.1 -- Check if fix is needed if not pcall(function() return math.random(1, 2^40); end) then local oldMathRandom = math.random; math.random = function(a, b) if not a and b then return oldMathRandom(); end if not b then return math.random(1, a); end if a > b then a, b = b, a; end local diff = b - a; assert(diff >= 0); if diff > 2 ^ 31 - 1 then return math.floor(oldMathRandom() * diff + a); else return oldMathRandom(a, b); end end end -- newproxy polyfill _G.newproxy = _G.newproxy or function(arg) if arg then return setmetatable({}, {}); end return {}; end -- Require Prometheus Submodules local Pipeline = require("prometheus.pipeline"); local highlight = require("highlightlua"); local colors = require("colors"); local Logger = require("logger"); local Presets = require("presets"); local Config = require("config"); local util = require("prometheus.util"); -- Restore package.path package.path = oldPkgPath; -- Export return { Pipeline = Pipeline; colors = colors; Config = util.readonly(Config); -- Readonly Logger = Logger; highlight = highlight; Presets = Presets; }