Как получить координаты этой точки на карте?

guikaua12

Новичок
Автор темы
16
2
Версия MoonLoader
.026-beta
How to get the coordinates of this point on the map?
 

Вложения

  • contrabando.png
    contrabando.png
    214 KB · Просмотры: 11

манку хлебал

Потрачен
305
121
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
local events = require('lib.samp.events')

function events.onSetMapIcon(id, position, type, color, style)
    if type == 24 then
        sampAddChatMessage(('x: %.2f y: %.2f z: %.2f'):format(position.x, position.y, position.z), -1)
    end
end