В простом Lua скрипте не работает задержка. Что не так?

Diego_Sativa

Известный
Автор темы
573
60
Версия SA-MP
  1. 0.3.7 (R1)
local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
if valid and doesCharExist(ped) then
local result, id = sampGetPlayerIdByCharHandle(ped)
if result and isKeyDown(VK_I) then
sampSendChat(string.format("/invite %s", id) )
wait(10000)
sampSendChat(string.format("/giverank %s 7", id) )
end
 

Diego_Sativa

Известный
Автор темы
573
60
Lua:
local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
if valid and doesCharExist(ped) then
    local result, id = sampGetPlayerIdByCharHandle(ped)
    if result and isKeyDown(VK_I) then
        lua_thread.create(function()
            sampSendChat(string.format("/invite %s", id) )
            wait(10000)
            sampSendChat(string.format("/giverank %s 7", id) )
        end)
    end
end
Поспешил я отметить как решение.
Это крашит гта при запуске.
 

zTechnology

Известный
1,094
485
  • Влюблен
Реакции: SomaGnoma

Diego_Sativa

Известный
Автор темы
573
60
Последнее редактирование:

Diego_Sativa

Известный
Автор темы
573
60
перед wait делай поток lua_thread.crate(function()
--
end)
Да я не шарю как это сделать бро

так?
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
        if valid and doesCharExist(ped) then
            local result, id = sampGetPlayerIdByCharHandle(ped)
            if result and isKeyDown(VK_I) then
                sampSendChat(string.format("/invite %s", id) )
                    lua_thread.crate(function()
                wait(10000)
                    end
                sampSendChat(string.format("/giverank %s 7", id) )
            end
        end
    end
end
 

XauIIoBbIu_KoIIIaK

Новичок
22
16

Да я не шарю как это сделать бро

так?
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
        if valid and doesCharExist(ped) then
            local result, id = sampGetPlayerIdByCharHandle(ped)
            if result and isKeyDown(VK_I) then
                sampSendChat(string.format("/invite %s", id) )
                    lua_thread.crate(function()
                wait(10000)
                    end
                sampSendChat(string.format("/giverank %s 7", id) )
            end
        end
    end
end
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        lua_thread.create(function()
            local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
            if valid and doesCharExist(ped) then
                local result, id = sampGetPlayerIdByCharHandle(ped)
                if result and isKeyDown(VK_I) then
                    sampSendChat(string.format("/invite %s", id) )
                    wait(10000)
                    sampSendChat(string.format("/giverank %s 7", id) )
                end
            end
        end)
    end
end