diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-07-27 17:16:04 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-07-27 17:16:04 +0200 |
commit | 0623a4f9be1c21651ea212f7b4d86136a67ddffe (patch) | |
tree | 5a96f13f72fa394bf74d10839a76ec7a1eac9275 /Core/back.lua | |
parent | Removed all the pre-exising core files. (diff) | |
download | cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar.gz cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar.bz2 cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar.lz cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar.xz cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.tar.zst cuberite-0623a4f9be1c21651ea212f7b4d86136a67ddffe.zip |
Diffstat (limited to 'Core/back.lua')
-rw-r--r-- | Core/back.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Core/back.lua b/Core/back.lua new file mode 100644 index 000000000..cc215ba11 --- /dev/null +++ b/Core/back.lua @@ -0,0 +1,9 @@ +function HandleBackCommand( Split, Player ) + if BackCoords[Player:GetName()] == nil then + Player:SendMessage(cChatColor.Green .. "There is no last position known") + else + Player:TeleportToCoords(BackCoords[Player:GetName()].x, BackCoords[Player:GetName()].y, BackCoords[Player:GetName()].z) + Player:SendMessage(cChatColor.Green .. "You teleported back to your last known position") + end + return true +end
\ No newline at end of file |