- 12
- 0
- Версия MoonLoader
- .027.0-preview
Нужно этот скрипт сделать на активацию дизактивацию на клавишу f10
По типу этого скрипта
Плз помогите если сделайте скиньте номер своей карты скину 200₽
lua:
require "lib.moonloader"
require "lib.sampfuncs"
local ffi = require "ffi"
ffi.cdef[[
void keybd_event(int keycode, int scancode, int flags, int extra);
]]
function EmulateKey(key, isDown)
if not isDown then
ffi.C.keybd_event(key, 0, 2, 0)
else
ffi.C.keybd_event(key, 0, 0, 0)
end
end
function main()
while not isSampAvailable() do wait(0) end
while true do wait(1000)
EmulateKey(VK_RETURN, true)
wait(20)
EmulateKey(VK_RETURN, false)
end
end
По типу этого скрипта
lua:
local key = 35
local active = false
function main()
while not isSampAvailable() do wait(100) end
while true do
wait(100)
if active then
sampSendChat('/mm')
end
if wasKeyPressed(key) then
if active then
active = false
sampAddChatMessage('Флудер в /mm выключен', -1)
else
active = true
sampAddChatMessage('Флудер в /mm включен', -1)
end
end
end
end
Последнее редактирование: