summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/top.lua
blob: f8591047552f7b4b4a390b25059a55a33d25658d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
function HandleTopCommand( Split, Player )

	local World = Player:GetWorld()

	local PlayerPos = Player:GetPosition()
	local Height = World:GetHeight( math.floor( PlayerPos.x ), math.floor( PlayerPos.z ) )
	SetBackCoordinates( Player )
	Player:TeleportToCoords( PlayerPos.x, Height+1, PlayerPos.z )
	SendMessageSuccess( Player, "Teleported to the topmost block" )

	return true

end