summaryrefslogblamecommitdiffstats
path: root/MCServer/Plugins/Core/top.lua
blob: 91f9aa297552c8b20c00bafe9e4c75bc15066acf (plain) (tree)
1
2
3
4
5
6
7
8




                                                                                           


                                               




                                                                
function HandleTopCommand( Split, Player )
	local World = Player:GetWorld()
	
	local PlayerPos = Player:GetPosition()
	local Height = World:GetHeight( math.floor(PlayerPos.x), math.floor(PlayerPos.z) )
	X[Player:GetName()] = Player:GetPosX()
	Y[Player:GetName()] = Player:GetPosY()
	Z[Player:GetName()] = Player:GetPosZ()
	Player:TeleportTo( PlayerPos.x, Height+1, PlayerPos.z )
	Player:SendMessage("Teleported to the top block")
	
	return true
end