From 330d66097f4b7fdcd3215ff576e7d65b59833dc4 Mon Sep 17 00:00:00 2001 From: mathiascode Date: Fri, 24 Feb 2017 11:11:38 +0200 Subject: Removed a few default plugins (#3580) --- Server/Plugins/ChunkWorx | 1 - Server/Plugins/DiamondMover/DiamondMover.lua | 85 ---------------------------- Server/Plugins/Handy | 1 - Server/Plugins/MagicCarpet | 1 - Server/Plugins/TransAPI | 1 - 5 files changed, 89 deletions(-) delete mode 160000 Server/Plugins/ChunkWorx delete mode 100644 Server/Plugins/DiamondMover/DiamondMover.lua delete mode 160000 Server/Plugins/Handy delete mode 160000 Server/Plugins/MagicCarpet delete mode 160000 Server/Plugins/TransAPI (limited to 'Server/Plugins') diff --git a/Server/Plugins/ChunkWorx b/Server/Plugins/ChunkWorx deleted file mode 160000 index 894c7e320..000000000 --- a/Server/Plugins/ChunkWorx +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 894c7e32049e9d2a1e736f7d721aaacd1ae29e53 diff --git a/Server/Plugins/DiamondMover/DiamondMover.lua b/Server/Plugins/DiamondMover/DiamondMover.lua deleted file mode 100644 index d3e70acfc..000000000 --- a/Server/Plugins/DiamondMover/DiamondMover.lua +++ /dev/null @@ -1,85 +0,0 @@ - --- DiamondMover.lua - --- An example Lua plugin using the cBlockArea object --- When a player rclks with a diamond in their hand, an area around the clicked block is moved in the direction the player is facing - - - - - --- Global variables -MOVER_SIZE_X = 4; -MOVER_SIZE_Y = 4; -MOVER_SIZE_Z = 4; - - - - - -function Initialize(Plugin) - Plugin:SetName("DiamondMover"); - Plugin:SetVersion(1); - - cPluginManager.AddHook(cPluginManager.HOOK_PLAYER_USED_ITEM, OnPlayerUsedItem); - - LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion()); - return true; -end - - - - - -function OnPlayerUsedItem(Player, BlockX, BlockY, BlockZ, BlockFace, CursorX, CursorY, CursorZ) - - -- Don't check if the direction is in the air - if (BlockFace == -1) then - return false; - end; - - if (not Player:HasPermission("diamondmover.move")) then - return false; - end; - - -- Rclk with a diamond to push in the direction the player is facing - if (Player:GetEquippedItem().m_ItemType == E_ITEM_DIAMOND) then - local Area = cBlockArea(); - Area:Read(Player:GetWorld(), - BlockX - MOVER_SIZE_X, BlockX + MOVER_SIZE_X, - BlockY - MOVER_SIZE_Y, BlockY + MOVER_SIZE_Y, - BlockZ - MOVER_SIZE_Z, BlockZ + MOVER_SIZE_Z - ); - - local PlayerPitch = Player:GetPitch(); - if (PlayerPitch < -70) then -- looking up - BlockY = BlockY + 1; - else - if (PlayerPitch > 70) then -- looking down - BlockY = BlockY - 1; - else - local PlayerRot = Player:GetYaw() + 180; -- Convert [-180, 180] into [0, 360] for simpler conditions - if ((PlayerRot < 45) or (PlayerRot > 315)) then - BlockZ = BlockZ - 1; - else - if (PlayerRot < 135) then - BlockX = BlockX + 1; - else - if (PlayerRot < 225) then - BlockZ = BlockZ + 1; - else - BlockX = BlockX - 1; - end; - end; - end; - end; - end; - - Area:Write(Player:GetWorld(), BlockX - MOVER_SIZE_X, BlockY - MOVER_SIZE_Y, BlockZ - MOVER_SIZE_Z); - return false; - end -end - - - - diff --git a/Server/Plugins/Handy b/Server/Plugins/Handy deleted file mode 160000 index e64a04be3..000000000 --- a/Server/Plugins/Handy +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e64a04be39ac7790abcb09de3d4c7d8fc2a2a1e2 diff --git a/Server/Plugins/MagicCarpet b/Server/Plugins/MagicCarpet deleted file mode 160000 index 94da343b6..000000000 --- a/Server/Plugins/MagicCarpet +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 94da343b62f0498a5843247f36d6ee00cbeb8f21 diff --git a/Server/Plugins/TransAPI b/Server/Plugins/TransAPI deleted file mode 160000 index be15597bf..000000000 --- a/Server/Plugins/TransAPI +++ /dev/null @@ -1 +0,0 @@ -Subproject commit be15597bf3d976310a59e3aa8661cce413441c13 -- cgit v1.2.3