определение координат маркера.

TaoTan

Участник
Автор темы
62
3
Версия MoonLoader
.026-beta
Lua:
function wtp()
   if isPlayerPlaying(playerHandle) then
      local posX, posY, posZ = getCharCoordinates(playerPed)
      local res, x, y, z = SearchMarker(posX, posY, posZ, 50.0, true)
      if res then
      sampAddChatMessage(string.format("Найден обычный маркер в координатах %.2f %.2f %.2f", x, y, z), -1)
      end
   end
end

Почему маркер определяется когда я убераю его?
И почему то он опрделяется когда убран, хотя оно так быть не должно...
И показывает одни и теже координаты
 
  • Нравится
Реакции: cort

Rice.

Известный
Модератор
1,755
1,652
Lua:
function wtp()
   if isPlayerPlaying(playerHandle) then
      local posX, posY, posZ = getCharCoordinates(playerPed)
      local res, x, y, z = SearchMarker(posX, posY, posZ, 50.0, true)
      if res then
      sampAddChatMessage(string.format("Найден обычный маркер в координатах %.2f %.2f %.2f", x, y, z), -1)
      end
   end
end

Почему маркер определяется когда я убераю его?
И почему то он опрделяется когда убран, хотя оно так быть не должно...
И показывает одни и теже координаты
Lua:
local blip = {
    has = false,
    x = 0.0,
    y = 0.0,
    z = 0.0,
}
-------------------------------------
function wtp()
    blip.has, blip.x, blip.y, blip.z = FindMarker()
    if blip.has then
        sampAddChatMessage(string.format("Найден обычный маркер в координатах %.2f %.2f %.2f", blip.x, blip.y, blip.z), -1)
    end
end
-------------------------------------
function FindMarker()
    local isFind = false
    if not isFind then
        local ret_posX = 0.0
        local ret_posY = 0.0
        local ret_posZ = 0.0
        for id = 0, 31 do
            local MarkerStruct = 0
            MarkerStruct = 0xC7F168 + id * 56
            local MarkerPosX = representIntAsFloat(readMemory(MarkerStruct + 0, 4, false))
            local MarkerPosY = representIntAsFloat(readMemory(MarkerStruct + 4, 4, false))
            local MarkerPosZ = representIntAsFloat(readMemory(MarkerStruct + 8, 4, false))
            if MarkerPosX ~= 0.0 or MarkerPosY ~= 0.0 or MarkerPosZ ~= 0.0 then
                ret_posX = MarkerPosX
                ret_posY = MarkerPosY
                ret_posZ = MarkerPosZ
                isFind = true
            end
        end
        return isFind, ret_posX, ret_posY, ret_posZ
    end
end