Need this script to show coordinates

P3rsik

Активный
Автор темы
213
32
i need this to show coords
 

Вложения

  • Screenshot_3.png
    Screenshot_3.png
    63.9 KB · Просмотры: 65

chapo

tg/inst: @moujeek
Всефорумный модератор
9,225
12,624
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand('showmypos', function()
        local x, y, z = getCharCoordinates(PLAYER_PED)
        printStringNow('X - '..("%.2f"):format(x)..' Y - '..("%.2f"):format(y)..' Z - '..("%.2f"):format(z)  , 2000)
    end)
    wait(-1)
end
 
  • Нравится
Реакции: P3rsik