Ищу быструю езду на скейте

mona

Активный
Автор темы
288
29
ку, autorun не работает, ищу максимальную езду на shift, типо на shift флудит W
 
Решение
ку, autorun не работает, ищу максимальную езду на shift, типо на shift флудит W
Lua:
local bords = {
    [16920] = true, --сноуборд
    [] = true, -- в скобки пиши ид модели скейта из /dl, потому что я хз
}
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do wait(0)
        if isCharOnAnyBike(playerPed) and not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive() and isKeyDown(0xA0) then
            if bords[getCarModel(storeCarCharIsInNoSave(playerPed))] then
                setGameKeyState(16, 255)
                wait(10)
                setGameKeyState(16, 0)
            end
        end
    end
end

XRLM

Известный
2,540
857
ку, autorun не работает, ищу максимальную езду на shift, типо на shift флудит W
Lua:
local bords = {
    [16920] = true, --сноуборд
    [] = true, -- в скобки пиши ид модели скейта из /dl, потому что я хз
}
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do wait(0)
        if isCharOnAnyBike(playerPed) and not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive() and isKeyDown(0xA0) then
            if bords[getCarModel(storeCarCharIsInNoSave(playerPed))] then
                setGameKeyState(16, 255)
                wait(10)
                setGameKeyState(16, 0)
            end
        end
    end
end
 
  • Нравится
  • Клоун
Реакции: Air_Official и zxcultan