Автобаг мотоцикла

Anadar

Новичок
Автор темы
1
0
Ищу скрипт для аризоны который за меня будет нажимать стрелку вверх на мотоцикле
 

Bredd Lane

Известный
423
349
Держи.
Lua:
script_name('AutoBike')
script_author('Bredd Lane')

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()
    while not isSampAvailable() do wait(100) end
    while true do
        wait(0)
        if isCharOnAnyBike(playerPed) then
            if moto[getCarModel(storeCarCharIsInNoSave(playerPed))] then
                setGameKeyState(1, -128)
                wait(10)
                setGameKeyState(1, 0)
            end
        end
    end
end
 

Вложения

  • AutoBike.lua
    531 байт · Просмотры: 22