- Версия MoonLoader
- .026-beta
Нужно чтобы после открытия диалога, три раза подряд нажималась клавиша Enter.
Вот код:
require "lib.moonloader"
local keys = require "vkeys"
encoding = require "encoding"
encoding.default = 'UTF-8'
cyr = encoding.CP1251
local state = false
local time = os.clock()
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(cyr('Автор скрипта Mikky'), 0x04ff00)
sampAddChatMessage(cyr('Активация скрипта - /piar'), 0xfa00f6)
sampRegisterChatCommand("piar", function() state = not state
sampAddChatMessage((state and 'Enable' or 'Disable'), -1)
end)
while true do
wait(35000)
if state then
sampSendChat(cyr("/ad Работает 165 бар Ждем"))
НУЖНО ПОСЛЕ ЭТОГО СООБЩЕНИЯ
end
end
end
Вот код:
require "lib.moonloader"
local keys = require "vkeys"
encoding = require "encoding"
encoding.default = 'UTF-8'
cyr = encoding.CP1251
local state = false
local time = os.clock()
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(cyr('Автор скрипта Mikky'), 0x04ff00)
sampAddChatMessage(cyr('Активация скрипта - /piar'), 0xfa00f6)
sampRegisterChatCommand("piar", function() state = not state
sampAddChatMessage((state and 'Enable' or 'Disable'), -1)
end)
while true do
wait(35000)
if state then
sampSendChat(cyr("/ad Работает 165 бар Ждем"))
НУЖНО ПОСЛЕ ЭТОГО СООБЩЕНИЯ
end
end
end