Проблемка в ЛУА.

Флэмч

Участник
Автор темы
77
1
Версия MoonLoader
.026-beta
Почему не заходит в рекон, чей ИД прописал в /h?
Lua:
function h(id)
if id == "" then
sampAddChatMessage("{FFFFFF}Используй /h id", -1)
else
local result = sampIsPlayerConnected(id)
if not result then
sampAddChatMessage("{FFFFFF}Игрок не в игре.", -1)
else
local nick = sampGetPlayerNickname(id)
lua_thread.create(function() wait(0)
sampAddChatMessage("FFFFFF}В слежке.", -1)
sampSendChat(u8'/pm '..id..' Слежу', -1)
wait(400)
sampSendChat(u8'/re '..id.. -1)
end)
end
end
end
 
Последнее редактирование:
Решение
Lua:
function h(id)
    if #id == 0 then
        sampAddChatMessage("{FFFFFF}Используй /h id", -1)
    else
        if not sampIsPlayerConnected(id)      then
            sampAddChatMessage("{FFFFFF}Игрок не в игре.", -1)
        else

            lua_thread.create(function()
                wait(0)
                sampAddChatMessage("FFFFFF}В слежке.", -1)
                sampSendChat(u8'/pm '..id..' Слежу')
                wait(400)
                sampSendChat(u8'/re '..id)
            end)
        end
    end
end
в sampSendChat не указывается аргумент цвета

andrey_hacker

Известный
274
88
Lua:
function h(id)
    if #id == 0 then
        sampAddChatMessage("{FFFFFF}Используй /h id", -1)
    else
        if not sampIsPlayerConnected(id)      then
            sampAddChatMessage("{FFFFFF}Игрок не в игре.", -1)
        else

            lua_thread.create(function()
                wait(0)
                sampAddChatMessage("FFFFFF}В слежке.", -1)
                sampSendChat(u8'/pm '..id..' Слежу')
                wait(400)
                sampSendChat(u8'/re '..id)
            end)
        end
    end
end
в sampSendChat не указывается аргумент цвета
 
Последнее редактирование: