mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-12-12 12:59:47 +01:00
fix all new doors
This commit is contained in:
@@ -663,6 +663,8 @@
|
||||
<movevent event="AddItem" itemid="6129" tileitem="1" script="misc/floorchange.lua" />
|
||||
<movevent event="StepIn" itemid="6130" script="misc/floorchange.lua" />
|
||||
<movevent event="AddItem" itemid="6130" tileitem="1" script="misc/floorchange.lua" />
|
||||
<movevent event="StepIn" itemid="7053" script="misc/floorchange.lua" />
|
||||
<movevent event="AddItem" itemid="7053" tileitem="1" script="misc/floorchange.lua" />
|
||||
|
||||
<!-- Damage -->
|
||||
<movevent event="StepIn" itemid="2145" script="misc/damage.lua" />
|
||||
@@ -738,6 +740,14 @@
|
||||
<movevent event="StepOut" itemid="6261" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6263" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6265" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6897" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6899" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6906" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="6908" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="7039" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="7041" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="7048" script="misc/doors.lua" />
|
||||
<movevent event="StepOut" itemid="7050" script="misc/doors.lua" />
|
||||
|
||||
<!-- Magic Fields -->
|
||||
<movevent event="StepIn" itemid="1998" function="onStepInField" />
|
||||
|
||||
@@ -18,6 +18,10 @@ local verticalDoors = {
|
||||
[6206] = 6205,
|
||||
[6259] = 6258,
|
||||
[6263] = 6262,
|
||||
[6906] = 6905,
|
||||
[6908] = 6907,
|
||||
[7048] = 7047,
|
||||
[7050] = 7049,
|
||||
}
|
||||
|
||||
local horizontalDoors = {
|
||||
@@ -40,6 +44,10 @@ local horizontalDoors = {
|
||||
[6208] = 6207,
|
||||
[6261] = 6260,
|
||||
[6265] = 6264,
|
||||
[6897] = 6896,
|
||||
[6899] = 6898,
|
||||
[7039] = 7038,
|
||||
[7041] = 7040,
|
||||
}
|
||||
|
||||
function onStepOut(creature, item, fromPosition, toPosition)
|
||||
|
||||
@@ -83,6 +83,7 @@ local list = {
|
||||
[6130] = {x = 0, y = 1, z = 1},
|
||||
[6172] = {x = 0, y = 0, z = 1},
|
||||
[6173] = {x = 0, y = 0, z = 1},
|
||||
[7053] = {x = 0, y = 0, z = 1},
|
||||
}
|
||||
|
||||
function onStepIn(creature, item, position, fromPosition)
|
||||
|
||||
Reference in New Issue
Block a user