Files
cuberite-2a/MCServer/Plugins/Core/locate.lua
T

4 lines
287 B
Lua
Raw Normal View History

2013-07-27 16:24:03 +01:00
function HandleLocateCommand( Split, Player )
2013-07-31 17:10:59 +01:00
Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. string.format("You are at [X:%0.2f Y:%0.2f Z:%0.2f] in world %s", Player:GetPosX(), Player:GetPosY(), Player:GetPosZ(), Player:GetWorld():GetName()) )
2013-07-27 16:24:03 +01:00
return true
end