mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 01:29:21 +02:00
fix few monsters loot and barbarians camp entrance doors
This commit is contained in:
parent
a088b511ef
commit
c511e72afd
@ -396,6 +396,8 @@
|
|||||||
<action itemid="6194" script="misc/doors.lua" />
|
<action itemid="6194" script="misc/doors.lua" />
|
||||||
<action itemid="6248" script="misc/doors.lua" />
|
<action itemid="6248" script="misc/doors.lua" />
|
||||||
<action itemid="6251" script="misc/doors.lua" />
|
<action itemid="6251" script="misc/doors.lua" />
|
||||||
|
<action itemid="6799" script="misc/doors.lua" />
|
||||||
|
<action itemid="6801" script="misc/doors.lua" />
|
||||||
<action itemid="6891" script="misc/doors.lua" />
|
<action itemid="6891" script="misc/doors.lua" />
|
||||||
<action itemid="6900" script="misc/doors.lua" />
|
<action itemid="6900" script="misc/doors.lua" />
|
||||||
<action itemid="7033" script="misc/doors.lua" />
|
<action itemid="7033" script="misc/doors.lua" />
|
||||||
@ -499,6 +501,8 @@
|
|||||||
<action itemid="6252" script="misc/doors.lua" />
|
<action itemid="6252" script="misc/doors.lua" />
|
||||||
<action itemid="6254" script="misc/doors.lua" />
|
<action itemid="6254" script="misc/doors.lua" />
|
||||||
<action itemid="6256" script="misc/doors.lua" />
|
<action itemid="6256" script="misc/doors.lua" />
|
||||||
|
<action itemid="6795" script="misc/doors.lua" />
|
||||||
|
<action itemid="6797" script="misc/doors.lua" />
|
||||||
<action itemid="6892" script="misc/doors.lua" />
|
<action itemid="6892" script="misc/doors.lua" />
|
||||||
<action itemid="6894" script="misc/doors.lua" />
|
<action itemid="6894" script="misc/doors.lua" />
|
||||||
<action itemid="6901" script="misc/doors.lua" />
|
<action itemid="6901" script="misc/doors.lua" />
|
||||||
@ -554,6 +558,7 @@
|
|||||||
<action itemid="6255" script="misc/doors.lua" />
|
<action itemid="6255" script="misc/doors.lua" />
|
||||||
<action itemid="6259" script="misc/doors.lua" />
|
<action itemid="6259" script="misc/doors.lua" />
|
||||||
<action itemid="6263" script="misc/doors.lua" />
|
<action itemid="6263" script="misc/doors.lua" />
|
||||||
|
<action itemid="6798" script="misc/doors.lua" />
|
||||||
<action itemid="6902" script="misc/doors.lua" />
|
<action itemid="6902" script="misc/doors.lua" />
|
||||||
<action itemid="6904" script="misc/doors.lua" />
|
<action itemid="6904" script="misc/doors.lua" />
|
||||||
<action itemid="6906" script="misc/doors.lua" />
|
<action itemid="6906" script="misc/doors.lua" />
|
||||||
@ -608,6 +613,7 @@
|
|||||||
<action itemid="6257" script="misc/doors.lua" />
|
<action itemid="6257" script="misc/doors.lua" />
|
||||||
<action itemid="6261" script="misc/doors.lua" />
|
<action itemid="6261" script="misc/doors.lua" />
|
||||||
<action itemid="6265" script="misc/doors.lua" />
|
<action itemid="6265" script="misc/doors.lua" />
|
||||||
|
<action itemid="6796" script="misc/doors.lua" />
|
||||||
<action itemid="6893" script="misc/doors.lua" />
|
<action itemid="6893" script="misc/doors.lua" />
|
||||||
<action itemid="6895" script="misc/doors.lua" />
|
<action itemid="6895" script="misc/doors.lua" />
|
||||||
<action itemid="6897" script="misc/doors.lua" />
|
<action itemid="6897" script="misc/doors.lua" />
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
local lockedDoors = {
|
local lockedDoors = {
|
||||||
1628, 1631, 1650, 1653, 1668, 1671, 1682, 1691, 5006, 5007, 5097, 5106, 5115, 5124, 5133, 5136, 5139, 5142, 5277, 5280, 5732, 5735, 6191, 6194, 6248, 6251, 6891, 6900, 7033, 7042
|
1628, 1631, 1650, 1653, 1668, 1671, 1682, 1691, 5006, 5007, 5097, 5106, 5115, 5124, 5133, 5136, 5139, 5142, 5277, 5280, 5732, 5735, 6191, 6194, 6248, 6251, 6799, 6801, 6891, 6900, 7033, 7042
|
||||||
}
|
}
|
||||||
|
|
||||||
local closedNormalDoors = {
|
local closedNormalDoors = {
|
||||||
@ -51,6 +51,8 @@ local closedNormalDoors = {
|
|||||||
[6252] = 6253,
|
[6252] = 6253,
|
||||||
[6254] = 6255,
|
[6254] = 6255,
|
||||||
[6256] = 6257,
|
[6256] = 6257,
|
||||||
|
[6795] = 6796,
|
||||||
|
[6797] = 6798,
|
||||||
[6892] = 6893,
|
[6892] = 6893,
|
||||||
[6894] = 6895,
|
[6894] = 6895,
|
||||||
[6901] = 6902,
|
[6901] = 6902,
|
||||||
@ -107,6 +109,7 @@ local openVerticalDoors = {
|
|||||||
[6255] = 6254,
|
[6255] = 6254,
|
||||||
[6259] = 6258,
|
[6259] = 6258,
|
||||||
[6263] = 6262,
|
[6263] = 6262,
|
||||||
|
[6798] = 6797,
|
||||||
[6902] = 6901,
|
[6902] = 6901,
|
||||||
[6904] = 6903,
|
[6904] = 6903,
|
||||||
[6906] = 6905,
|
[6906] = 6905,
|
||||||
@ -162,6 +165,7 @@ local openHorizontalDoors = {
|
|||||||
[6257] = 6256,
|
[6257] = 6256,
|
||||||
[6261] = 6260,
|
[6261] = 6260,
|
||||||
[6265] = 6264,
|
[6265] = 6264,
|
||||||
|
[6796] = 6795,
|
||||||
[6893] = 6892,
|
[6893] = 6892,
|
||||||
[6895] = 6894,
|
[6895] = 6894,
|
||||||
[6897] = 6896,
|
[6897] = 6896,
|
||||||
|
@ -30810,24 +30810,24 @@ Flags = {Bottom,Unpass,Unmove}
|
|||||||
|
|
||||||
TypeID = 6795
|
TypeID = 6795
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Flags = {Unpass,Unmove}
|
Flags = {Door,Unpass,Unmove,Unthrow,Unlay}
|
||||||
|
|
||||||
TypeID = 6796
|
TypeID = 6796
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Flags = {Top,Unmove}
|
Flags = {Top,Door,Unmove}
|
||||||
|
|
||||||
TypeID = 6797
|
TypeID = 6797
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Flags = {Unpass,Unmove}
|
Flags = {Door,Unpass,Unmove,Unthrow,Unlay}
|
||||||
|
|
||||||
TypeID = 6798
|
TypeID = 6798
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Flags = {Top,Unmove}
|
Flags = {Top,Door,Unmove}
|
||||||
|
|
||||||
TypeID = 6799
|
TypeID = 6799
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Description = "It seems tightly closed"
|
Description = "It seems tightly closed"
|
||||||
Flags = {Unpass,Unmove}
|
Flags = {UseEvent,Door,Unpass,Unmove,Unthrow,Unlay}
|
||||||
|
|
||||||
TypeID = 6800
|
TypeID = 6800
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
@ -30836,7 +30836,7 @@ Flags = {Top,Unmove}
|
|||||||
TypeID = 6801
|
TypeID = 6801
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
Description = "It seems tightly closed"
|
Description = "It seems tightly closed"
|
||||||
Flags = {Unpass,Unmove}
|
Flags = {UseEvent,Door,Unpass,Unmove,Unthrow,Unlay}
|
||||||
|
|
||||||
TypeID = 6802
|
TypeID = 6802
|
||||||
Name = "an entrance"
|
Name = "an entrance"
|
||||||
|
@ -44,7 +44,6 @@
|
|||||||
<item id="3266" chance="60" /><!-- battle axe -->
|
<item id="3266" chance="60" /><!-- battle axe -->
|
||||||
<item id="3358" chance="102" /><!-- chain armor -->
|
<item id="3358" chance="102" /><!-- chain armor -->
|
||||||
<item id="5911" chance="5" /><!-- red piece of cloth -->
|
<item id="5911" chance="5" /><!-- red piece of cloth -->
|
||||||
<item id="266" chance="9" /><!-- health potion -->
|
|
||||||
<item id="3344" chance="3" /><!-- beastslayer axe -->
|
<item id="3344" chance="3" /><!-- beastslayer axe -->
|
||||||
<item id="7457" chance="1" /><!-- fur boots -->
|
<item id="7457" chance="1" /><!-- fur boots -->
|
||||||
<item id="7290" chance="2" /><!-- shard -->
|
<item id="7290" chance="2" /><!-- shard -->
|
||||||
|
@ -44,7 +44,6 @@
|
|||||||
<item id="3367" chance="50" /><!-- viking helmet -->
|
<item id="3367" chance="50" /><!-- viking helmet -->
|
||||||
<item id="3114" chance="32" /><!-- skull -->
|
<item id="3114" chance="32" /><!-- skull -->
|
||||||
<item id="5913" chance="9" /><!-- brown piece of cloth -->
|
<item id="5913" chance="9" /><!-- brown piece of cloth -->
|
||||||
<item id="266" chance="5" /><!-- health potion -->
|
|
||||||
<item id="3052" chance="2" /><!-- life ring-->
|
<item id="3052" chance="2" /><!-- life ring-->
|
||||||
<item id="7461" chance="1" /><!-- krimhorn helmet -->
|
<item id="7461" chance="1" /><!-- krimhorn helmet -->
|
||||||
<item id="7457" chance="1" /><!-- fur boots -->
|
<item id="7457" chance="1" /><!-- fur boots -->
|
||||||
|
@ -41,7 +41,6 @@
|
|||||||
<item id="3377" chance="38" /><!-- scale armor -->
|
<item id="3377" chance="38" /><!-- scale armor -->
|
||||||
<item id="3114" chance="30" /><!-- skull -->
|
<item id="3114" chance="30" /><!-- skull -->
|
||||||
<item id="7449" chance="2" /><!-- crystal sword -->
|
<item id="7449" chance="2" /><!-- crystal sword -->
|
||||||
<item id="266" chance="9" /><!-- HP -->
|
|
||||||
<item id="5913" chance="5" /><!-- brown piece of cloth -->
|
<item id="5913" chance="5" /><!-- brown piece of cloth -->
|
||||||
<item id="3052" chance="2" /><!-- life ring -->
|
<item id="3052" chance="2" /><!-- life ring -->
|
||||||
<item id="7462" chance="1" /><!-- ragnir helmet -->
|
<item id="7462" chance="1" /><!-- ragnir helmet -->
|
||||||
|
@ -46,7 +46,6 @@
|
|||||||
<item id="3269" chance="5" /><!-- halberd -->
|
<item id="3269" chance="5" /><!-- halberd -->
|
||||||
<item id="7460" chance="2" /><!-- norse shield -->
|
<item id="7460" chance="2" /><!-- norse shield -->
|
||||||
<item id="3384" chance="1" /><!-- dark helmet -->
|
<item id="3384" chance="1" /><!-- dark helmet -->
|
||||||
<item id="266" chance="8" /><!-- health potion -->
|
|
||||||
<item id="7290" chance="6" /><!-- shard -->
|
<item id="7290" chance="6" /><!-- shard -->
|
||||||
<item id="3093" chance="1" /><!-- club ring -->
|
<item id="3093" chance="1" /><!-- club ring -->
|
||||||
</loot>
|
</loot>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user