-- Vinil.Skript.lua
=============================================
-- MODULE: CACHE_REFRESH.lua
-- Принудительный сброс текстурного кэша
-- =============================================

function refreshTextures()
    -- Поиск маркера рендера
    local marker = gg.scanMemory("52 65 6E 64 65 72 65 72") -- "Renderer"
    if marker and #marker > 0 then
        gg.setValues({
            {address = marker[1] + 0x10, flags = gg.TYPE_DWORD, value = 0x00000001}
        })
        gg.sleep(300)
        gg.setValues({
            {address = marker[1] + 0x10, flags = gg.TYPE_DWORD, value = 0x00000000}
        })
        gg.toast("Кэш обновлён. Винил должен появиться.")
    end
end

-- Вызов после инъекции
pcall(refreshTextures)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: