Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kaleohanopahala authored Jan 8, 2025
1 parent f253373 commit 609f6e7
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
local Morguthiswall = Action()

function Morguthiswall.onUse(player, item, fromPosition, target, toPosition)
local wallPosition = Position(33211, 32698, 13)
local wallId = 1306

local tile = Tile(wallPosition)
if not tile then
return false
end

local wall = tile:getItemById(wallId)
if wall then
wall:remove()
else
local creatures = tile:getCreatures()
if creatures then
for _, creature in ipairs(creatures) do
local newPosition = Position(wallPosition.x, wallPosition.y + 1, wallPosition.z)
creature:teleportTo(newPosition)
end
end

local items = tile:getItems()
if items then
for _, tileItem in ipairs(items) do
local newPosition = Position(wallPosition.x, wallPosition.y + 1, wallPosition.z)
tileItem:moveTo(newPosition)
end
end

Game.createItem(wallId, 1, wallPosition)
end

return true
end

Morguthiswall:aid(10808)
Morguthiswall:register()

0 comments on commit 609f6e7

Please sign in to comment.