- 29
- 1
Что не так? Прописываю команду и пишет: 1251.9428831641, а должно так: 2007.24, -1548.28, 12.8468
Вот код:
Вот код:
Lua:
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("my_coord", get_coord_player)
wait(-1)
end
function get_coord_player()
local x, y, z = getCharCoordinates(playerPed)
sampAddChatMessage(x, y, z, 0xFF0000)
end