summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/functions.lua
diff options
context:
space:
mode:
authornielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-28 20:43:29 +0200
committernielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-28 20:43:29 +0200
commitcff6ff2223247997d357fc9421a2cfa3a5a54598 (patch)
tree755347c25db8c6db4a1fe95c34d0863425482bd9 /MCServer/Plugins/Core/functions.lua
parentAdded /listworlds command and fixed bug in /listgroups where you have an extra comma at the end. (diff)
downloadcuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar.gz
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar.bz2
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar.lz
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar.xz
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.tar.zst
cuberite-cff6ff2223247997d357fc9421a2cfa3a5a54598.zip
Diffstat (limited to 'MCServer/Plugins/Core/functions.lua')
-rw-r--r--MCServer/Plugins/Core/functions.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/functions.lua b/MCServer/Plugins/Core/functions.lua
new file mode 100644
index 000000000..6d82d2253
--- /dev/null
+++ b/MCServer/Plugins/Core/functions.lua
@@ -0,0 +1,5 @@
+function SetBackCoordinates( Player )
+ X[Player:GetName()] = Player:GetPosX()
+ Y[Player:GetName()] = Player:GetPosY()
+ Z[Player:GetName()] = Player:GetPosZ()
+end \ No newline at end of file