не работает код Lua

silentium2006

Потрачен
Автор темы
715
129
Нет форматирования кода
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пишет это в логе
[ML] (error) new.lua: C:\GTA 140K BY DAPO SHOW\moonloader\new.lua:11: 'end' expected (to close 'function' at line 3) near '<eof>'
[ML] (error) new.lua: Script died due to an error. (0E4770E4)

Ввожу это

local tag = 1

function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end

if tag == 1 then
sampAddChatMessage(tag .. "text", 0xFFFF01)
else
sampAddChatMessage(tag .. "text", 0xFFFF00)
end
 
Решение
Пишет это в логе
[ML] (error) new.lua: C:\GTA 140K BY DAPO SHOW\moonloader\new.lua:11: 'end' expected (to close 'function' at line 3) near '<eof>'
[ML] (error) new.lua: Script died due to an error. (0E4770E4)

Ввожу это

local tag = 1

function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end

if tag == 1 then
sampAddChatMessage(tag .. "text", 0xFFFF01)
else
sampAddChatMessage(tag .. "text", 0xFFFF00)
end
Попробуй это:

1:
local tag = 1

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    if tag == 1 then
    sampAddChatMessage(tag .. "text", 0xFFFF01)
    else...

Corenale

луашер типа
Проверенный
167
338
Пишет это в логе
[ML] (error) new.lua: C:\GTA 140K BY DAPO SHOW\moonloader\new.lua:11: 'end' expected (to close 'function' at line 3) near '<eof>'
[ML] (error) new.lua: Script died due to an error. (0E4770E4)

Ввожу это

local tag = 1

function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end

if tag == 1 then
sampAddChatMessage(tag .. "text", 0xFFFF01)
else
sampAddChatMessage(tag .. "text", 0xFFFF00)
end
Попробуй это:

1:
local tag = 1

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end

    if tag == 1 then
    sampAddChatMessage(tag .. "text", 0xFFFF01)
    else
    sampAddChatMessage(tag .. "text", 0xFFFF00)
    end
end
А так, ты пропустил один end, это даже говорится в логе:
'end' expected (to close 'function' at line 3) near '<eof>'
 
  • Нравится
Реакции: silentium2006