Не могу запустить скрипт

kePesh

Участник
Автор темы
19
5
крч не могу запустить пишет что в 19 строчке что то не так. Хотя вроде бы всё так.
Код:
require("lib.moonloader")

local script = false

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("pepe", pepe)
    while true do
        wait(0)
    end
end

function pepe(message)
    script = not script
    sampAddChatMessage(script and "Active!" or "Not active!", -1)
end

while true do
    wait(0)
    if script then
        printStyledString("Active!", 20, 7)
    end
end
 
Решение
ну да, откуда у тебя это взялось?
вот рабочий:
Lua:
require("lib.moonloader")

local script = false

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("pepe", pepe)
    while true do
        wait(0)
        if script then
            printStyledString("Active!", 20, 7)
        end
    end
end

function pepe(message)
    script = not script
    sampAddChatMessage(script and "Active!" or "Not active!", -1)
end

Дядя Энрик.

Активный
339
82
ну да, откуда у тебя это взялось?
вот рабочий:
Lua:
require("lib.moonloader")

local script = false

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("pepe", pepe)
    while true do
        wait(0)
        if script then
            printStyledString("Active!", 20, 7)
        end
    end
end

function pepe(message)
    script = not script
    sampAddChatMessage(script and "Active!" or "Not active!", -1)
end