Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
local isRunning = false
local runKey = "z" -- Клавиша активации/деактивации бега
function ToggleRun()
if isRunning then
isRunning = false
SetWalkSpeed(5)
else
isRunning = true
SetWalkSpeed(10)
end
end
function CheckKeyPress()
if IsKeyPressed(runKey) then
ToggleRun()
Wait(0.2)
end
end
while true do
CheckKeyPress()
Wait(0.01)
end
require "lib.moonloader"
function main()
while true do
wait(0)
if isKeyDown(VK_Z) and isPlayerPlaying(playerHandle) then
local m = require("memory")
m.setuint8(sampGetServerSettingsPtr(), 1)
while isKeyDown(VK_Z) do wait(100) end
end
end
end