diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-26 23:44:37 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-26 23:44:37 +0100 |
commit | 45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf (patch) | |
tree | ea33c19161f5885896c21937204c21afaeba5eb9 /Plugins/NewTest/top.lua | |
parent | No longer hard coded Lua files in new plugin system (diff) | |
download | cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.gz cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.bz2 cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.lz cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.xz cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.zst cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.zip |
Diffstat (limited to 'Plugins/NewTest/top.lua')
-rw-r--r-- | Plugins/NewTest/top.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Plugins/NewTest/top.lua b/Plugins/NewTest/top.lua new file mode 100644 index 000000000..0f7a8f95f --- /dev/null +++ b/Plugins/NewTest/top.lua @@ -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
\ No newline at end of file |