Skip to content

Commit

Permalink
improve: brain head boss teleport from action id to position
Browse files Browse the repository at this point in the history
  • Loading branch information
majestyotbr committed Jan 8, 2024
1 parent ed99d95 commit d2a22b4
Showing 1 changed file with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ local config = {
exitPosition = Position(31971, 32325, 10),
}

local entrancesTiles = {
{ position = { x = 31937, y = 32324, z = 10 } },
{ position = { x = 31937, y = 32325, z = 10 } },
{ position = { x = 31937, y = 32326, z = 10 } },
{ position = { x = 31951, y = 32310, z = 10 } },
{ position = { x = 31952, y = 32310, z = 10 } },
{ position = { x = 31953, y = 32310, z = 10 } },
{ position = { x = 31954, y = 32310, z = 10 } },
{ position = { x = 31955, y = 32310, z = 10 } },
{ position = { x = 31956, y = 32310, z = 10 } },
{ position = { x = 31957, y = 32310, z = 10 } },
{ position = { x = 31951, y = 32339, z = 10 } },
{ position = { x = 31952, y = 32339, z = 10 } },
{ position = { x = 31953, y = 32339, z = 10 } },
{ position = { x = 31953, y = 32340, z = 10 } },
{ position = { x = 31954, y = 32340, z = 10 } },
{ position = { x = 31955, y = 32340, z = 10 } },
{ position = { x = 31955, y = 32341, z = 10 } },
{ position = { x = 31969, y = 32323, z = 10 } },
{ position = { x = 31969, y = 32324, z = 10 } },
{ position = { x = 31969, y = 32325, z = 10 } },
{ position = { x = 31969, y = 32326, z = 10 } },
{ position = { x = 31969, y = 32327, z = 10 } },
}

local zone = Zone("boss." .. toKey(config.bossName))
local encounter = Encounter("Brain Head", {
zone = zone,
Expand Down Expand Up @@ -99,7 +124,10 @@ function teleportBoss.onStepIn(creature, item, position, fromPosition)
player:sendBosstiaryCooldownTimer()
end

teleportBoss:aid(30407)
for value in pairs(entrancesTiles) do
teleportBoss:position(entrancesTiles[value].position)
end

teleportBoss:type("stepin")
teleportBoss:register()

Expand Down

0 comments on commit d2a22b4

Please sign in to comment.