- 396
- 106
Чел попросил сделать
Выложу тут вдруг кому то надо
На работе погрузчика сам зажимает NumPad 2 и 8, вы только ездите
Активация: /numbot
Выложу тут вдруг кому то надо
На работе погрузчика сам зажимает NumPad 2 и 8, вы только ездите
Активация: /numbot
LUA:
local sampev = require('lib.samp.events')
local bot = false
local press_key = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('numbot', cmd_bot)
wait(-1)
end
function cmd_bot()
bot = not bot
if not bot and press_key then
setVirtualKeyDown(98, false)
setVirtualKeyDown(104, false)
end
printStringNow((bot and '~Y~NumPad Bot ~n~~G~ON' or '~Y~NumPad Bot ~n~~R~OFF'), 1000)
end
function sampev.onServerMessage(color, text)
if bot then
if text:find('Удерживайте NUM2, чтобы разгрузить ресурсы') then
press_key = true
setVirtualKeyDown(98, true)
end
if text:find('Удерживайте NUM8, чтобы загрузить ресурсы') then
press_key = true
setVirtualKeyDown(104, true)
end
if text:find('Вы пeревезли ресурсы.') or text:find('Отвезите ресурсы к разгрузке метала') then
setVirtualKeyDown(98, false)
setVirtualKeyDown(104, false)
press_key = false
end
end
end