SAMP | Возвращение ID игрока на которого целишься

Antala

Новичок
Автор темы
8
0
Версия MoonLoader
.026-beta
Всем привет,

Пытаюсь получить ID игрока на которого я целюсь. Есть следующий код:

Lua:
    if option == "catcher" then
        lua_thread.create(function()
          while true do wait(0)
            result, ped = getCharPlayerIsTargeting(PLAYER_PED)
            if result then
                r, i = sampGetPlayerIdByCharHandle(ped)
                if r then
                    sampAddChatMessage("ID: "..i)
                end
            end
          end
 end)

  end

Но он выдаёт ошибку:

cannot resume non-suspended coroutine

В чем может быть проблема? Пытался создавать аналогичную функцию в main(), но всё равно крашилось.

Заранее спасибо за помощь!
 

Hideme Flow

Известный
573
201
Не верный ped указал (getCharPlayerIsTargeting(PLAYER_PED)
Lua:
if option == "catcher" then
        lua_thread.create(function()
            while true do
                wait(0)
                local validtar, pedtar = getCharPlayerIsTargeting(playerHandle)
                if validtar and doesCharExist(pedtar) then
                    local result, id = sampGetPlayerIdByCharHandle(pedtar)
                    if result then
                        sampAddChatMessage("ID: "..id)
                    end
                end
            end
        end)
    end