Недавнее содержимое от manoaratefy

  1. M

    Repeated async HTTP requests makes game crash on exit

    Good morning, I have problem with my LUA script and I hope someone had similar problem and found the solution. My script is a part of a bigger mod, but after a lot of test, I found out that my bug is related to a single feature in my mod. Basically, I have a URL which provides data. My LUA...
  2. M

    Софт [Module] Crypto

    I tried to use this library to encrypt and send message to a PHP but it seems not working. My LUA code: local crypto = require 'crypto_lua' local base64 = require "base64" local cjson = require "cjson" local aes_key = crypto.aes_generate_key() local aes_iv = crypto.aes_generate_iv() local...
  3. M

    How to compile LUA libraries?

    Good morning, I need to use specific dependancies from luarocks.org and tried to install them but got an issue. Within x86 Native Tools Command Prompt for VS 2022, I went to moonloader\luarocks folder and tried to launch luarocks install compat53 but it ain't working: c:\GTA San...
  4. M

    How to achieve non-blocking http(s) request on moonloader?

    Good morning, I'm using libstd.ssl.https library (LuaSec 0.7) to perform a https request within a SA-MP moonloader mod. Unfortunately, the game is freezing until https request got a reply to the request. How to achieve non-blocking https request within the game, so the game can continue until...