Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
function main()
local HSens = readMemory(0xB6EC1C, 4, 0)
local VSens = readMemory(0xB6EC18, 4, 0)
if VSens ~= HSens then
writeMemory(0xB6EC18, 4, HSens, 0)
end
wait(-1)
end
function main()
local HSens = readMemory(0xB6EC1C, 4, 0)
local VSens = readMemory(0xB6EC18, 4, 0)
if VSens ~= HSens then
writeMemory(0xB6EC18, 4, HSens, 0)
end
wait(-1)
end
script_author("LUCHARE")
local mem = require 'memory'
-- gta_sa.exe+12228C - D8 0D 18ECB600 - fmul dword ptr [gta_sa.exe+76EC18] ( target )
function onScriptLoad(scr)
if (scr.name == thisScript().name) then
mem.setuint32((0x0052228C + 0x2), 0xB6EC1C) -- ptr to vertical mouse acceleration -> ptr to horizontal
end
end
function main() wait(-1) end
function onScriptTerminate(scr, q)
if (scr.name == thisScript().name) then
mem.setuint32((0x0052228C + 0x2), 0xB6EC18) -- patch annulment
end
end
script_author("LUCHARE")
local mem = require 'memory'
-- gta_sa.exe+12228C - D8 0D 18ECB600 - fmul dword ptr [gta_sa.exe+76EC18] ( target )
function onScriptLoad(scr)
if (scr.name == thisScript().name) then
mem.setuint32((0x0052228C + 0x2), 0xB6EC1C) -- ptr to vertical mouse acceleration -> ptr to horizontal
end
end
function main() wait(-1) end
function onScriptTerminate(scr, q)
if (scr.name == thisScript().name) then
mem.setuint32((0x0052228C + 0x2), 0xB6EC18) -- patch annulment
end
end