Авто-W на шифт для велика

FugaMagic

Известный
Автор темы
1,122
527
Ищу именно клео, которое будет на шифт быстро нажимать w и велик будет быстро ехать. именно клео. (на лаунчер я всё установил, но работает только клео. (тэкстурке новии хочеца))
 

хочу гратися

Известный
233
180
у меня мун работает на лаунчере
1632468523995.png

афто ц:
script_name("AutoBicycleRunSwimOnMaxSpeed")
script_author("checkdasound")
script_version("4.0")
script_url("https://perfect-soft.net/")

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()
while true do
    wait(0)
   
        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
       
        if isCharOnFoot(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then -- onFoot&inWater SpeedUP [[1]] --
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        elseif isCharInWater(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        end
    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
 

FugaMagic

Известный
Автор темы
1,122
527
у меня мун работает на лаунчере
Посмотреть вложение 115390
афто ц:
script_name("AutoBicycleRunSwimOnMaxSpeed")
script_author("checkdasound")
script_version("4.0")
script_url("https://perfect-soft.net/")

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()
while true do
    wait(0)
  
        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
      
        if isCharOnFoot(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then -- onFoot&inWater SpeedUP [[1]] --
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        elseif isCharInWater(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        end
    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
всё что кидаю в мун, не работает. либы перекинул со своей сборки
 

хочу гратися

Известный
233
180
А киньте тему где этот скрип на moon
Код:
script_name("AutoBicycleRunSwimOnMaxSpeed")
script_author("checkdasound")
script_version("4.0")
script_url("https://perfect-soft.net/")

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()
while true do
    wait(0)
  
        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
      
        if isCharOnFoot(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then -- onFoot&inWater SpeedUP [[1]] --
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        elseif isCharInWater(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        end
    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
 

OffenderLZT

Известный
213
12
Код:
script_name("AutoBicycleRunSwimOnMaxSpeed")
script_author("checkdasound")
script_version("4.0")
script_url("https://perfect-soft.net/")

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()
while true do
    wait(0)
 
        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
     
        if isCharOnFoot(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then -- onFoot&inWater SpeedUP [[1]] --
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        elseif isCharInWater(playerPed) and isKeyDown(0xA0) and isKeyCheckAvailable() then
            setGameKeyState(16, 256)
            wait(10)
            setGameKeyState(16, 0)
        end
    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
И что мне с этим делать?
 

scroll.

23.05.2024 💂‍♀️
Проверенный
4,010
1,247

Вложения

  • dlya_chaynikov.lua
    1.7 KB · Просмотры: 101