local logo4 = renderLoadTextureFromFile("C:\\Users\\lukge\\OneDrive\\Рабочий стол\\Новая папка (2)\\volent.jpg")
-- renderLoadTextureFromFile(zstring file)
local logo = false
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('volent', function() logo = not logo end)
sampAddChatMessage("{cc8c51} Скрипт загружен. Активация /volent")
while true do wait(0)
if logo then
local sw, sh = getScreenResolution() -- разрешение экрана
renderDrawTexture(logo4, sw/2, sh/2, 100, 100, 0, 0xFFFFFFFF) -- покажет загруженную текстуру по центру экрана
-- renderDrawTexture(DxTexture texture, float posX, float posY, float sizeX, float sizeY, float rotation, uint color)
end
end
end