Welcome to hackvshack.net Forum!
Download Free HvH CS2/CS:GO Cheats, CFG, LUA/JS Scripts, and More!
Register

Tutorial how to play hvh with the neverlose free

how does nl free made this possible?
so you cant play on bot servers normally right?
if you attach a debugger after nl init, and u go to local map, deattach it very fast and it works perfectly
 
how does nl free made this possible?
so you cant play on bot servers normally right?
if you attach a debugger after nl init, and u go to local map, deattach it very fast and it works perfectly
just release the nl free with fixed configs and luas and other issues fixed porfa
 
1775879426206.png
i just edited some things on database with postgresql rust server and i finally put a username + pfp from mictia00 streamer with some luas xd
 
Could it be that you need to delete the .txt file extensions for it to work? like this:1775915675881.png
Oh yeah, you're right! Do you know how to fix the luas though? some are crashing that i found and i cant really create more luas there, is there some way to have more than like 6 scripts or how many are there? I tried putting the luas in the cheat folder like i mean with the python scripts in the data/luas folder and it doesnt show then i tried putting them in scripts and they dont show and since i cant even create them, is there some lua that is same like config one just for luas?
 
Oh yeah, you're right! Do you know how to fix the luas though? some are crashing that i found and i cant really create more luas there, is there some way to have more than like 6 scripts or how many are there? I tried putting the luas in the cheat folder like i mean with the python scripts in the data/luas folder and it doesnt show then i tried putting them in scripts and they dont show and since i cant even create them, is there some lua that is same like config one just for luas?
either u fix the server
or you add a fix in every lua code which wanna use any neverlose library

like this

Code:
Expand Collapse Copy
local origrequire = require

local compiler = loadstring or load



local modules = {

    -- for example neverlose/clipboard, you steal the src from nl website, you paste here the code and bum works

    ["neverlose/clipboard"] = function(require)

        -- code here

    end,

}



local loaded = {}

local loading = {}



local custom_require



local function make_env(modname)

    return setmetatable({

        require = custom_require,

        _MODULE = modname

    }, {

        __index = _G

    })

end



local function load_embedded_module(lib, def)

    if loaded[lib] ~= nil then

        return loaded[lib]

    end



    if loading[lib] then

        error("circular require detected for module: " .. lib, 2)

    end



    loading[lib] = true



    local ret

    local t = type(def)



    if t == "function" then

        local ok, result = pcall(def, custom_require, lib)

        loading[lib] = nil



        if not ok then

            error(("failed to load module '%s': %s"):format(lib, tostring(result)), 2)

        end



        ret = result

    elseif t == "table" then

        loading[lib] = nil

        ret = def

    elseif t == "string" then

        if not compiler then

            loading[lib] = nil

            error(("module '%s' is stored as source string, but load/loadstring is unavailable"):format(lib), 2)

        end



        local chunk, err = compiler(def, "@" .. lib)

        if not chunk then

            loading[lib] = nil

            error(("failed to compile module '%s': %s"):format(lib, tostring(err)), 2)

        end



        if setfenv then

            setfenv(chunk, make_env(lib))

        end



        local ok, result = pcall(chunk, lib)

        loading[lib] = nil



        if not ok then

            error(("failed to load module '%s': %s"):format(lib, tostring(result)), 2)

        end



        ret = result

    else

        loading[lib] = nil

        error(("unsupported embedded module type for '%s': %s"):format(lib, t), 2)

    end



    if ret == nil then

        ret = true

    end



    loaded[lib] = ret

    return ret

end



custom_require = function(lib)

    local def = modules[lib]



    if def ~= nil then

        return load_embedded_module(lib, def)

    end



    return error("require: " .. lib)

    --return origrequire(lib)

end; require = custom_require
 

Who has read this thread (Total: 4) in last 1 hours View details