de29399987
Made some changes to WebAdmin to make the new plugins work Old plugins still work like they're supposed to Not all hooks have been programmed for the new plugins yet, this still needs to be done git-svn-id: http://mc-server.googlecode.com/svn/trunk@182 0a769ca7-a7f5-676a-18bf-c427514a06d6
11 lines
340 B
Lua
11 lines
340 B
Lua
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 |