- 17
- 1
Как сделать так, чтобы скрипт при активации выполнялся несколько раз, или же до последующего нажатия кнопки?
Код:
require 'lib.moonloader'
local events = require 'lib.samp.events'
local a = 0
function main()
while not isSampAvailable() do wait(0) end
while true do wait(0)
if isKeyJustPressed(VK_0) and not sampIsCursorActive() then
if a == 0 then
sampSendClickTextdraw(2272)
sampSendClickTextdraw(2220)
sampSendClickTextdraw(57)
wait(100)
a = 1
else
sampSendClickTextdraw(49)
sampSendClickTextdraw(57)
a = 1
b = 0
end
end
end
end
function events.onShowTextDraw(id, data)
lua_thread.create(function()
if b == 0 then
if data.text:find('Snakehead') and a == 1 then
sampSendClickTextdraw(id)
sampSendClickTextdraw(2219)
a = 0
b = 1
end
end
end)
end