Может кому пригодится исходник мопфикса v4 на луа
Lua:
local e = require 'samp.events'
function e.onSendPlayerSync(data)
if data.animationId == 1058 then
data.animationId = 1130; data.animationFlags = 32772
data.upDownKeys = 65408; data.keysData = 32
data.quaternion[0] = 0; data.quaternion[1] = 0
if data.moveSpeed.x > 0.176 then
data.moveSpeed.x = (data.moveSpeed.x - 0.176) / 33.33 + 0.176 + math.random(-0.0005, 0.0005)
end
if data.moveSpeed.y > 0.176 then
data.moveSpeed.y = (data.moveSpeed.y - 0.176) / 33.33 + 0.176 + math.random(-0.0005, 0.0005)
end
if not (data.moveSpeed.x >= -0.176) then
data.moveSpeed.x = (data.moveSpeed.x + 0.176) / 33.33 - 0.176 + math.random(-0.0005, 0.0005)
end
if not (data.moveSpeed.y >= -0.176) then
data.moveSpeed.y = (data.moveSpeed.y + 0.176) / 33.33 - 0.176 + math.random(-0.0005, 0.0005)
end
data.moveSpeed.z = 0
if data.moveSpeed.x > 0.1906 or not (data.moveSpeed.x >= -0.1906) or data.moveSpeed.y > 0.1906 or not (data.moveSpeed.y >= -0.1906) then
printString("~R~High speed!", 100)
end
end
end
Последнее редактирование: