Вопрос http.lua не робит

Статус
В этой теме нельзя размещать новые ответы.
  • 258
  • 10
  • 12
Многие аддоны не работают, тот же самый VCMOD not leak
при этом в инете англичане пишут что не критично вот ошибка

[[anti-cheat] eprotect_1.1.0] HTTP failed - ISteamHTTP isn't available!
1. oldFetch - lua/includes/modules/http.lua:42

вот Http.lua
http.lua:
local HTTP = HTTP

--[[---------------------------------------------------------
    HTTP Module. Interaction with HTTP.
-----------------------------------------------------------]]
module( "http" )

--[[---------------------------------------------------------

    Get the contents of a webpage.

    Callback should be

    function callback( (args optional), contents, size )

-----------------------------------------------------------]]
function Fetch( url, onsuccess, onfailure, header )

    local request = {
        url            = url,
        method        = "get",
        headers        = header or {},

        success = function( code, body, headers )

            if ( !onsuccess ) then return end

            onsuccess( body, body:len(), headers, code )

        end,

        failed = function( err )

            if ( !onfailure ) then return end

            onfailure( err )

        end
    }

    HTTP( request )

end

function Post( url, params, onsuccess, onfailure, header )

    local request = {
        url            = url,
        method        = "post",
        parameters    = params,
        headers        = header or {},

        success = function( code, body, headers )

            if ( !onsuccess ) then return end

            onsuccess( body, body:len(), headers, code )

        end,

        failed = function( err )

            if ( !onfailure ) then return end

            onfailure( err )

        end
    }

    HTTP( request )

end

--[[

Or use HTTP( table )

local request = {
    url            = "[URL]http://pastebin.com/raw.php?i=3jsf50nL[/URL]",
    method        = "post",

    parameters = {
        id            = "548",
        country        = "England"
    }

    success = function( code, body, headers )

        Msg( "Request Successful\n" )
        Msg( "Code: ", code, "\n" )
        Msg( "Body Length:\n", body:len(), "\n" )
        Msg( "Body:\n", body, "\n" )
        PrintTable( headers )

    end,

    failed = function( reason )
        Msg( "Request failed: ", reason, "\n" )
    end
}

HTTP( request )

--]]
 
  • 258
  • 10
  • 12
1643043557959.png

вставил твой ранстринг
 
  • 164
  • 13
  • 21
Статус
В этой теме нельзя размещать новые ответы.
Сверху Снизу