Ayuda - Help - Помощь

Mattioli

Участник
Автор темы
45
2
ENGLISH:

Hello to the Blast HK community, I wanted to ask you to help me if possible.

I'm trying to make a .lua file that starts pointing automatically, how could I do it?

Thanks


RUSSIAN:


Привет сообществу Blast HK, я хотел попросить вас помочь мне, если это возможно.

Я пытаюсь создать файл .lua, который начинает указывать автоматически, как мне это сделать?

Спасибо
 

YarikVL

Известный
Проверенный
4,766
1,820
ENGLISH:

Hello to the Blast HK community, I wanted to ask you to help me if possible.

I'm trying to make a .lua file that starts pointing automatically, how could I do it?

Thanks


RUSSIAN:


Привет сообществу Blast HK, я хотел попросить вас помочь мне, если это возможно.

Я пытаюсь создать файл .lua, который начинает указывать автоматически, как мне это сделать?

Спасибо
What pointing automatically?
You want starts some file automatically? If stars some file use os.execute: https://www.blast.hk/threads/147484/
 

YarikVL

Известный
Проверенный
4,766
1,820
Начать прицеливание оружия моего персонажа
Lua:
require('lib.moonloader')
function main()
    while not isSampAvailable() do wait(0) end
        
    while true do
        wait(0)
        if wasKeyPressed(VK_T) then  --site with virtual key down: https://api.farmanager.com/ru/winapi/virtualkeycodes.html
            setVirtualKeyDown(VK_RBUTTON, true) -- key down
            wait(30)
            setVirtualKeyDown(VK_RBUTTON, false) --key up
        end
    end
end
If you click on T then key down right button on 30 milliseconds ( you need: edit aiming button in your settings or edit my code up )
 

Mattioli

Участник
Автор темы
45
2
Lua:
require('lib.moonloader')
function main()
    while not isSampAvailable() do wait(0) end
       
    while true do
        wait(0)
        if wasKeyPressed(VK_T) then  --site with virtual key down: https://api.farmanager.com/ru/winapi/virtualkeycodes.html
            setVirtualKeyDown(VK_RBUTTON, true) -- key down
            wait(30)
            setVirtualKeyDown(VK_RBUTTON, false) --key up
        end
    end
end
If you click on T then key down right button on 30 milliseconds ( you need: edit aiming button in your settings or edit my code up )


Привет
Вы пробовали?
я пробовал и ничего не получается
 

YarikVL

Известный
Проверенный
4,766
1,820
Привет
Вы пробовали?
я пробовал и ничего не получается
You don’t need use translater on Russian language.
Do you have some error in moonloader.log with my code? If don’t, then create video with you problems in game and demonstration your character control settings