bool result, float posX, float posY, float posZ = getTargetBlipCoordinates()
Проверяет существует ли пользовательская метка на карте и возвращает ее координаты.
bool result
результат проверки
float posX
, float posY
, float posZ
координаты метки
function main()
while not isSampAvailable() do wait (100) end
sampRegisterChatCommand("getmarketpos", markerpos)
wait(-1)
end
function markerpos()
local result, posX, posY, posZ = getTargetBlipCoordinates()
if result then
sampAddChatMessage("X: " .. posX .. " | Y: " .. posY .. " | Z: " .. posZ, -1)
else
sampAddChatMessage("Marker not found", -1)
end
end