diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-07-27 17:15:29 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-07-27 17:15:29 +0200 |
commit | aa6445042163366b225cf65f6ce7186377f2faf6 (patch) | |
tree | 1593ac9b849f3416aafa70c440694200c62e6b2c /MCServer/Plugins/Core/onplayermoving.lua | |
parent | Merge pull request #3 from mc-server/git-transition (diff) | |
download | cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar.gz cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar.bz2 cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar.lz cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar.xz cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.tar.zst cuberite-aa6445042163366b225cf65f6ce7186377f2faf6.zip |
Diffstat (limited to 'MCServer/Plugins/Core/onplayermoving.lua')
-rw-r--r-- | MCServer/Plugins/Core/onplayermoving.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/MCServer/Plugins/Core/onplayermoving.lua b/MCServer/Plugins/Core/onplayermoving.lua deleted file mode 100644 index c95eb0c5a..000000000 --- a/MCServer/Plugins/Core/onplayermoving.lua +++ /dev/null @@ -1,21 +0,0 @@ -function OnPlayerMoving( Player )
- if LimitWorld == true then
- local World = Player:GetWorld()
- local SpawnX = math.floor(World:GetSpawnX() / 16)
- local SpawnZ = math.floor(World:GetSpawnZ() / 16)
- local X = math.floor(Player:GetPosX() / 16)
- local Z = math.floor(Player:GetPosZ() / 16)
- if ( (SpawnX + LimitWorldWidth - 1) < X ) then
- Player:TeleportToCoords(Player:GetPosX() - 1, Player:GetPosY(), Player:GetPosZ())
- end
- if ( (SpawnX - LimitWorldWidth + 1) > X ) then
- Player:TeleportToCoords(Player:GetPosX() + 1, Player:GetPosY(), Player:GetPosZ())
- end
- if ( (SpawnZ + LimitWorldWidth - 1) < Z ) then
- Player:TeleportToCoords(Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() - 1)
- end
- if ( (SpawnZ - LimitWorldWidth + 1) > Z ) then
- Player:TeleportToCoords(Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() + 1)
- end
- end
-end
\ No newline at end of file |