Ищю скрипты для мотика

MR ROBOT

Новичок
Автор темы
25
0
Ищю скрипты на мотик: авто ускорение не нажимая стрелку верх
И без паливный ноубайк
 

copypaste_scripter

Известный
1,218
223
Lua:
require "lib.moonloader"
local keys = require "vkeys"
local sampev = require "lib.samp.events"

bike = {[481] = true, [509] = true, [510] = true}
moto = {[448] = true, [461] = true, [462] = true, [463] = true, [468] = true, [471] = true, [521] = true, [522] = true, [523] = true, [581] = true, [586] = true}

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end


    while true do
        wait(0)

        if isCharOnFoot(playerPed) and isKeyDown(0x31) and isKeyCheckAvailable() then -- onFoot&inWater SpeedUP [[1]] --
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        elseif isCharInWater(playerPed) and isKeyDown(0x31) and isKeyCheckAvailable() then
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        end
        if isCharOnAnyBike(playerPed) and isKeyCheckAvailable() and isKeyDown(0xA0) then    -- onBike&onMoto SpeedUP [[LSHIFT]] --
            if bike[getCarModel(storeCarCharIsInNoSave(playerPed))] then
                setGameKeyState(16, 255)
                wait(10)
                setGameKeyState(16, 0)
            elseif moto[getCarModel(storeCarCharIsInNoSave(playerPed))] then
                setGameKeyState(1, -128)
                wait(10)
                setGameKeyState(1, 0)
            end
        end

function isKeyCheckAvailable()
    if not isSampLoaded() then
        return true
    end
    if not isSampfuncsLoaded() then
        return not sampIsChatInputActive() and not sampIsDialogActive()
    end
    return not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive()
end
ускорение на шифт, быстрый бег на 1
код взят у @McLore #McLore как его пометить я хз вот его тема короче https://www.blast.hk/threads/49515/
 

Shingen

Известный
250
80
 
  • Нравится
Реакции: copypaste_scripter

vadimka

Известный
176
42
Ищю скрипты на мотик: авто ускорение не нажимая стрелку верх
И без паливный ноубайк
 
  • Нравится
Реакции: copypaste_scripter