Бесконечное повторение скрипта

MajakovskiyChai

Известный
Автор темы
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
 

YarikVL

Известный
Проверенный
4,740
1,816
Как сделать так, чтобы скрипт при активации выполнялся несколько раз, или же до последующего нажатия кнопки?


Код:
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
Посмотри лучше все гайды the champ guess особенно те, где он рассказывает про repeat ( это повторять пока что-то ) и for( это повторять определенное количество раз )
 
  • Нравится
Реакции: MajakovskiyChai

chapo

tg/inst: @moujeek
Модератор
9,073
12,037
Вот пример:
Lua:
require 'lib.moonloader'
local active = false

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        if wasKeyPressed(VK_H) then
            active = not active
            sampAddChatMessage('Скрипт '..(active and 'включен' or 'выключен'), -1)
        end
        if active then
            print('скрипт включен') -- если скрипт включен то в консоль будет флуд
        end
    end
end
 
  • Нравится
Реакции: MajakovskiyChai