Ищу фликшот

Kareli

Участник
Автор темы
76
6
Версия MoonLoader
.027.0-preview
есть ли у кого-то исходник фликшота

lua:
    if elements.checkboxes.flik
    фликшот
 

Kareli

Участник
Автор темы
76
6
фликшот?:
    function FlickShot()
       if elements.checkboxes.flik and isKeyDown(VK_LBUTTON) then
            local handle = GetNearestPed()
        if handle ~= -1 then
            local myPos = {getActiveCameraCoordinates()}
            local enPos = {getCharCoordinates(handle)}
            local vector = {myPos[1] - enPos[1], myPos[2] - enPos[2], myPos[3] - enPos[3]}
            if isWidescreenOnInOptions() then coefficentZ = 0.0778 else coefficentZ = 0.103 end
            local angle = {(math.atan2(vector[2], vector[1]) + 0.04253), (math.atan2((math.sqrt((math.pow(vector[1], 2) + math.pow(vector[2], 2)))), vector[3]) - math.pi / 2 - coefficentZ)}
            local view = {fix(representIntAsFloat(readMemory(0xB6F258, 4, false))), fix(representIntAsFloat(readMemory(0xB6F248, 4, false)))}
            local difference = {angle[1] - view[1], angle[2] - view[2]}
            local smooth = dif / (elements.checkboxes.aim.v * multiplier)
            setCameraPositionUnfixed((view[2] + smooth[2]), (view[1] + smooth[1]))
        end
    end
    return false
end
 

P0M61K

Активный
263
54
Ты понимаешь что такое фликшот? Любой попавшийся аим с настройками можно заставить фликшотить. Код, отправленный тобою ранее это smooth аим.
фликшот?:
    function FlickShot()
       if elements.checkboxes.flik and isKeyDown(VK_LBUTTON) then
            local handle = GetNearestPed()
        if handle ~= -1 then
            local myPos = {getActiveCameraCoordinates()}
            local enPos = {getCharCoordinates(handle)}
            local vector = {myPos[1] - enPos[1], myPos[2] - enPos[2], myPos[3] - enPos[3]}
            if isWidescreenOnInOptions() then coefficentZ = 0.0778 else coefficentZ = 0.103 end
            local angle = {(math.atan2(vector[2], vector[1]) + 0.04253), (math.atan2((math.sqrt((math.pow(vector[1], 2) + math.pow(vector[2], 2)))), vector[3]) - math.pi / 2 - coefficentZ)}
            local view = {fix(representIntAsFloat(readMemory(0xB6F258, 4, false))), fix(representIntAsFloat(readMemory(0xB6F248, 4, false)))}
            local difference = {angle[1] - view[1], angle[2] - view[2]}
            local smooth = dif / (elements.checkboxes.aim.v * multiplier)
            setCameraPositionUnfixed((view[2] + smooth[2]), (view[1] + smooth[1]))
        end
    end
    return false
end