getting Player position

Started by Spice, Jul 08, 2015, 11:08 AM

Previous topic - Next topic

Spice

how can i get my player's position.....like in 0.3 it was /s now in 0.4 its not working....is it changed or else...?
i have tried it as a cmd

print(">>" + player.Pos);

but itx also not working.....

KingOfVC

function onPlayerCommand(player,cmd,text)
{
if ( cmd == "s")
{
print(">> " + player.Pos )
}
}

Spice