1
0
cuberite-2a/MCServer/Plugins/Core/coords.lua
2012-08-20 12:20:20 +00:00

4 lines
209 B
Lua

function HandleCoordsCommand( Split, Player )
Player:SendMessage(cChatColor.Green .. string.format("[X:%0.2f] [Y:%0.2f] [Z:%0.2f]", Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() ) )
return true
end