1
0

Added the new core as a subtree.

This commit is contained in:
Alexander Harkness
2013-07-27 16:16:04 +01:00
parent aa64450421
commit 0623a4f9be
40 changed files with 3530 additions and 0 deletions

9
Core/back.lua Normal file
View File

@@ -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