function main()
while not isSampAvailable() do wait(0) end
changeRotorSpeed(0.01)
end
function changeRotorSpeed(speed)
local _s = 0xFCE9F5+0x74
writeMemory(_s, 4, representFloatAsInt(speed), true) -- 0.001 -- std
writeMemory(0x6C4F29+2, 4, _s, true)
sampAddChatMessage("Скорость разгона лопастей установлена на: "..speed, -1)
end