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

  1. 0cguboss

    double tap lua

    Send me might fix it soon
  2. 0cguboss

    double tap lua

    local function FindSignature(szModule, szPattern) local pBase = find_pattern(szModule, szPattern) if ffi.cast("void*", pBase) == NULLPTR then return nil end return ffi.cast("uintptr_t", pBase) end
  3. 0cguboss

    double tap lua

    Fix it then
  4. 0cguboss

    double tap lua

    This is quick made/pasted im not sure it works but this is a good base to work on. HookLibrary - https://nixware.cc/threads/26044/
  5. 0cguboss

    Scout fix lua

    wdym fixed scout?
  6. 0cguboss

    Other Lightweight json library

    0cguboss submitted a new item: Lightweight json library - json Read more...
  7. 0cguboss

    Other Lightweight json library

    lightweight and efficient library for encoding Lua values into JSON strings and decoding JSON strings back into Lua data structures. It supports standard Lua types such as tables, numbers, strings, booleans, and nil Encoding Lua → JSON Converts Lua values to JSON format, handling tables (as...
  8. 0cguboss

    Other Lightweight clipboard library

    local clipboard = require("clipboard") -- assuming the module is saved as clipboard.lua -- Read text from the clipboard local text, err = clipboard.get() if text then print("Clipboard text:", text) else print("Error reading clipboard:", err) end -- Write text to the clipboard local ok...
  9. 0cguboss

    Other Lightweight clipboard library

    0cguboss submitted a new item: Lightweight clipboard library - clipboard Read more...
  10. 0cguboss

    Other Extended Vectors Module

    0cguboss submitted a new item: Extended Vectors Module - vectors Read more...
  11. 0cguboss

    Other Extended Vectors Module

    high-performance, versatile Lua library for advanced vector math operations, including component-wise arithmetic, normalization, projections, rotations, and more. --- Vector library supporting 2D, 3D, and 4D vectors with rich operations. -- Supports vector arithmetic, normalization, dot/cross...
  12. 0cguboss

    Other OOP Lightweight Network library

    This post has been approved by susyaw officials.
  13. 0cguboss

    Other OOP Lightweight Network library

    local Network = require("network") local net = Network.new("MyLuaAgent/1.0", 15000) -- user agent and timeout in ms -- Simple HTTP GET local body, err = net:http_get("https://httpbin.org/get") print(body or "Error: " .. err) -- Get headers local headers =...
  14. 0cguboss

    Other OOP Lightweight Network library

    0cguboss submitted a new item: OOP Lightweight Network library - Network Read more...
  15. 0cguboss

    Other OOP Lightweight File System

    local FileSystem = require("filesystem") local fs = FileSystem.new() -- Check existence print("Does 'test.txt' exist?", fs:exists("test.txt")) -- Create directory fs:create_dir("my_folder") -- Copy a file fs:copy_file("test.txt", "my_folder\\copy_test.txt") -- Move a file...
Назад
Сверху