Utilizaremos las diferentes funciones que se pueden utilizar para poder obtener las posiciones, rotaciones, dimension e interior de un jugador al utilizar el comando /pos el cual nos dara en el chat la informacion solicitada
function showInformationOfPlayer(source) local x, y, z = getElementPosition(source) local xr, yr, zr = getElementRotation(source) local dimension = getElementDimension(source) local interior = getElementDimension(source) outputChatBox( "Tu posicion es: "..x..", "..y..", "..z, source, 239, 123, 0, true ) outputChatBox( "Tu rotacion es: "..xr..", "..yr..", "..zr, source, 239, 123, 0, true ) outputChatBox( "Tu dimension es: "..dimension, source, 239, 123, 0, true ) outputChatBox( "Tu interior es: "..interior, source, 239, 123, 0, true ) end addCommandHandler("pos", showInformationOfPlayer)Imagen de Prueba