- 522
- 126
- Версия MoonLoader
- .025-beta
Lua:
local vk = require "vkeys"
function main()
local toggle = false
while true do
wait(0)
if isKeyJustPressed(VK_M) then
toggle = not toggle
sampAddChatMessage(toggle and "ON" or "OFF", -1)
end
if toggle then
setVirtualKeyDown(0x12, true)
wait(10)
setVirtualKeyDown(0x12, false)
end
end
end