- 111
- 4
- Версия MoonLoader
- Другое
Как сделать чтоб скрипт автоматически Enter жал?.
вот код сделал:
как сделать чтобы когда отправлялось /ad 13 в диалоге:
автоматически нажималось "Отправить"?
вот код сделал:
Lua:
require 'lib.moonloader'
local key = require('vkeys')
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('start', cmd_start)
while true do
wait(0)
end
end
function cmd_start(arg)
lua_thread.create(
function(arg)
sampSendChat('/ad 13')
wait(5200)
sampSendChat('/ad 13')
wait(5200)
sampSendChat('/ad 13')
wait(5200)
sampSendChat('/ad 13')
wait(5200)
sampSendChat('/ad 13')
end, arg)
end