Author Topic: Is there a way to get the coordinates you are standing in?  (Read 2629 times)

/title

Like the X Y Z coordinates. Is there a command for it?

Like, a console command?

if so, talk(findClientByName(player).player.getPosition());

If not, I'm pretty sure there's not a simple /pos command or anything.

There was an event mod once that teleported you to coordinates instead of bricks. I believe it came with a /getcoords command.

on the client side you can do echo(serverconnection.getcontrolob ject().position);

I think there are VCE values <var:cl:posx> <var:cl:posy> and <var:cl:posz>

I think there are VCE values <var:cl:posx> <var:cl:posy> and <var:cl:posz>
That might be for the beta Advanced VCE add-on.

That might be for the beta Advanced VCE add-on.

Nah, not that.  If it isn't a part of the original VCE addon, it's in one of the two actually decent VCE variable replacer files.

Is there a command for it?

Look at an object and type /getTransform to get information on its location and some other stuff.

or, just add in a command to do what you desire.
Code: [Select]
function serverCmdgetposition(%client){messageClient(%client,'',"<color:FFFFFF>You are at "@%client.player.position);}/getposition to use