Помогите с YNS кликером.

BATON228

Новичок
Автор темы
18
0
скрипт один раз во время игры встает на зеленую клеточку, а потом сдыхает
Lua:
local SampEvents = require 'lib.samp.events'
local GameKeys = require 'game.keys'
local last = 0
local curr = 0

function main()
    repeat wait(0) until isSampAvailable()
    sampRegisterChatCommand('cmd', function() state = not state
        sampAddChatMessage(state and 'On' or 'Off', -1)
    end)
    wait(-1)
end

function getSlot(a)
    return (a - 150) / 24 + 1
end

function getYellowSlot(a)
    return (a - 170) / 24 + 1
end

function PressY()
    setGameKeyState(GameKeys.player.CONVERSATIONYES, -1)
    setGameKeyState(0, -1)
end

function PressN()
    setGameKeyState(GameKeys.player.CONVERSATIONNO, -1)
    setGameKeyState(0, -1)
end

function Move()
    if slot == 0 or curr == 0 then
        return
    end
    if slot > curr then
        setGameKeyState(GameKeys.player.CONVERSATIONNO, -1)
        setGameKeyState(0, -1)
        curr = 0
    end
    if curr > slot then
        setGameKeyState(GameKeys.player.CONVERSATIONYES, -1)
        setGameKeyState(0, -1)
        curr = 0
    end
    if slot == curr then
        setGameKeyState(GameKeys.player.SPRINT, -1)
        setGameKeyState(0, -1)
        slot = 0
    end

end

function SampEvents.onShowTextDraw(id, data)
    if state then
        if data.position.x == 247 and (data.position.y - 150) % 24 == 0 and data.modelId == 19265 then
            slot = getSlot(data.position.y)
            Move()
        end
        if data.letterColor == -16711681 and data.position.x == 215.5 and (data.position.y - 170) % 24 == 0 then
            curr = getYellowSlot(data.position.y)
            Move()
        end
        if data.text == '~r~Y' then
            PressY()
        end
        if data.text == '~g~Y' then
            PressY()
        end
        if data.text == '~r~N' then
            PressN()
        end
        if data.text == '~g~N' then
            PressN()
        end
        return {id, data}
    end
end
Нравится Реакции:Zaep

от сюда взял код - https://www.blast.hk/threads/57942/
 

Вложения

  • 1648544831637.gif
    1648544831637.gif
    42 байт · Просмотры: 3