Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
function tph(id)
if #id == 0 then
sampAddChatMessage("Нет аргумента", -1)
else
local handle = sampGetCharHandleBySampPlayerId(id)
local x,y,z = getCharCoordinates(handle)
setCharCoordinates(PLAYER_PED, x, y, z)
end
end
Решил!
local result, handle = sampGetCharHandleBySampPlayerId(tonumber(id))
local x,y,z = getCharCoordinates(handle)
setCharCoordinates(PLAYER_PED, x, y, z)
function tph(id)
if #id == 0 then
sampAddChatMessage("Нет аргумента", -1)
else
local handle = sampGetCharHandleBySampPlayerId(id)
local x,y,z = getCharCoordinates(handle)
setCharCoordinates(PLAYER_PED, x, y, z)
end
end
Решил!
local result, handle = sampGetCharHandleBySampPlayerId(tonumber(id))
local x,y,z = getCharCoordinates(handle)
setCharCoordinates(PLAYER_PED, x, y, z)