More new plugin awesomeness
git-svn-id: http://mc-server.googlecode.com/svn/trunk@174 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
11
Plugins/NewTest/top.lua
Normal file
11
Plugins/NewTest/top.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
function HandleTopCommand( Split, Player )
|
||||
local World = Player:GetWorld()
|
||||
|
||||
local PlayerPos = Player:GetPosition()
|
||||
local Height = World:GetHeight( math.floor(PlayerPos.x), math.floor(PlayerPos.z) )
|
||||
|
||||
Player:TeleportTo( PlayerPos.x, Height+1, PlayerPos.z )
|
||||
Player:SendMessage("Teleported to the top block")
|
||||
|
||||
return true
|
||||
end
|
||||
Reference in New Issue
Block a user