mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 09:39:20 +02:00
refactor tasks to be rewarded on monster death not on kill because on kill rewarded all players who does simple hit
This commit is contained in:
parent
0666223787
commit
1d4e7413ea
@ -9,5 +9,5 @@
|
|||||||
<event type="login" name="OfflineTraining" script="offlinetraining.lua" />
|
<event type="login" name="OfflineTraining" script="offlinetraining.lua" />
|
||||||
|
|
||||||
<!-- Killing In The Name Of Quest -->
|
<!-- Killing In The Name Of Quest -->
|
||||||
<event type="kill" name="KillingInTheNameOfKills" script="killing_in_the_name_of.lua" />
|
<event type="death" name="KillingInTheNameOf" script="killing_in_the_name_of.lua" />
|
||||||
</creaturescripts>
|
</creaturescripts>
|
||||||
|
@ -84,56 +84,37 @@ local tasks = {
|
|||||||
['orc'] = {taskerStorage = 17652, progressStorage = 17651, killsRequired = 50},
|
['orc'] = {taskerStorage = 17652, progressStorage = 17651, killsRequired = 50},
|
||||||
}
|
}
|
||||||
|
|
||||||
local function randomSort(arr)
|
|
||||||
local sorted = {}
|
|
||||||
local rand2
|
|
||||||
local rand
|
|
||||||
local mem
|
|
||||||
for i=1,#arr do
|
|
||||||
sorted[i] = arr[i]
|
|
||||||
end
|
|
||||||
if (#arr <= 1) then
|
|
||||||
return sorted;
|
|
||||||
end
|
|
||||||
for i=1,(#arr)^2 do
|
|
||||||
repeat
|
|
||||||
rand = math.random(1,#sorted)
|
|
||||||
rand2 = math.random(1,#sorted)
|
|
||||||
until rand ~= rand2
|
|
||||||
mem = sorted[rand]
|
|
||||||
sorted[rand] = pgtss[rand2]
|
|
||||||
sorted[rand2] = mem
|
|
||||||
end
|
|
||||||
return sorted
|
|
||||||
end
|
|
||||||
|
|
||||||
local maxPlayersInPartyShare = 2
|
local maxPlayersInPartyShare = 2
|
||||||
-- not tested probably nothing is working
|
|
||||||
function onKill(player, target)
|
function onDeath(creature, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified)
|
||||||
if target:isPlayer() or target:getMaster() then
|
if not creature:isMonster() or creature:getMaster() then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local targetName = target:getName():lower()
|
local player = mostdamagekiller
|
||||||
|
if not mostdamagekiller:isPlayer() then
|
||||||
|
local master = mostdamagekiller:getMaster()
|
||||||
|
if master and master:isPlayer() then
|
||||||
|
player = master
|
||||||
|
else
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local targetName = creature:getName():lower()
|
||||||
local task = tasks[targetName]
|
local task = tasks[targetName]
|
||||||
if task ~= nil then
|
if task ~= nil then
|
||||||
|
|
||||||
local players
|
local players
|
||||||
local party = player:getParty()
|
local party = player:getParty()
|
||||||
if party ~= nil and party:isSharedExperienceEnabled() then
|
if party ~= nil and party:isSharedExperienceActive() then
|
||||||
players = party:getMembers() -- all members of the party
|
players = party:getMembers() -- all members of the party
|
||||||
players[#players + 1] = party:getLeader() -- don't forget the leader
|
players[#players + 1] = party:getLeader() -- don't forget the leader
|
||||||
|
|
||||||
if #players > maxPlayersInPartyShare then -- if more than 4 players are in party than shuffle the table and give task bonus only for the first 4 players
|
|
||||||
players = randomSort(players)
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
players = { player } -- no party? then just the player
|
players = { player } -- no party? then just the player
|
||||||
end
|
end
|
||||||
|
|
||||||
for i, member in ipairs(players) do
|
for i, member in ipairs(players) do
|
||||||
print(i)
|
if i <= maxPlayersInPartyShare then
|
||||||
if i < maxPlayersInPartyShare then
|
|
||||||
local inProgressQuest = member:getStorageValue(task.taskerStorage)
|
local inProgressQuest = member:getStorageValue(task.taskerStorage)
|
||||||
if inProgressQuest == task.progressStorage then
|
if inProgressQuest == task.progressStorage then
|
||||||
local playerQuestKills = member:getStorageValue(task.progressStorage)
|
local playerQuestKills = member:getStorageValue(task.progressStorage)
|
||||||
|
@ -58,7 +58,6 @@ function onLogin(player)
|
|||||||
player:registerEvent("PlayerLogout")
|
player:registerEvent("PlayerLogout")
|
||||||
player:registerEvent("FirstItems")
|
player:registerEvent("FirstItems")
|
||||||
player:registerEvent("RegenerateStamina")
|
player:registerEvent("RegenerateStamina")
|
||||||
player:registerEvent("KillingInTheNameOfKills")
|
|
||||||
|
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
@ -48,5 +48,8 @@
|
|||||||
<item id="3031" countmax="40" chance="240" /><!-- gold coin -->
|
<item id="3031" countmax="40" chance="240" /><!-- gold coin -->
|
||||||
<item id="3032" chance="10" /><!-- small emerald -->
|
<item id="3032" chance="10" /><!-- small emerald -->
|
||||||
<item id="3065" chance="7" /><!-- terra rod -->
|
<item id="3065" chance="7" /><!-- terra rod -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -49,5 +49,8 @@
|
|||||||
<item id="3067" chance="7" /><!-- hailstorm rod -->
|
<item id="3067" chance="7" /><!-- hailstorm rod -->
|
||||||
<item id="3566" chance="6" /><!-- red robe -->
|
<item id="3566" chance="6" /><!-- red robe -->
|
||||||
<item id="3030" chance="7" /><!-- small ruby -->
|
<item id="3030" chance="7" /><!-- small ruby -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -29,5 +29,8 @@
|
|||||||
<item id="3031" countmax="45" chance="187" /><!-- gold coin -->
|
<item id="3031" countmax="45" chance="187" /><!-- gold coin -->
|
||||||
<item id="3492" countmax="2" chance="22" /><!-- worm -->
|
<item id="3492" countmax="2" chance="22" /><!-- worm -->
|
||||||
<item id="3577" chance="100" /><!-- meat -->
|
<item id="3577" chance="100" /><!-- meat -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -60,4 +60,7 @@
|
|||||||
<item id="3055" chance="6" /><!-- platinum amulet -->
|
<item id="3055" chance="6" /><!-- platinum amulet -->
|
||||||
<item id="2995" chance="5" /><!-- piggy bank -->
|
<item id="2995" chance="5" /><!-- piggy bank -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -45,4 +45,7 @@
|
|||||||
<item id="3074" chance="11" /><!-- wand of vortex -->
|
<item id="3074" chance="11" /><!-- wand of vortex -->
|
||||||
<item id="5810" chance="10" /><!-- pirate voodoo doll -->
|
<item id="5810" chance="10" /><!-- pirate voodoo doll -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -36,4 +36,7 @@
|
|||||||
<item id="5895" chance="10" /><!-- fish fin -->
|
<item id="5895" chance="10" /><!-- fish fin -->
|
||||||
<item id="3033" chance="9" /><!-- small amethyst -->
|
<item id="3033" chance="9" /><!-- small amethyst -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -49,4 +49,7 @@
|
|||||||
<item id="5895" chance="10" /><!-- fish fin -->
|
<item id="5895" chance="10" /><!-- fish fin -->
|
||||||
<item id="3294" chance="70" /><!-- short sword -->
|
<item id="3294" chance="70" /><!-- short sword -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -58,4 +58,7 @@
|
|||||||
<item id="3098" chance="8" /><!-- ring of healing -->
|
<item id="3098" chance="8" /><!-- ring of healing -->
|
||||||
<item id="3370" chance="8" /><!-- knight armor -->
|
<item id="3370" chance="8" /><!-- knight armor -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -64,4 +64,7 @@
|
|||||||
<item id="3370" chance="8" /><!-- knight armor -->
|
<item id="3370" chance="8" /><!-- knight armor -->
|
||||||
<item id="5895" chance="15" /><!-- fish fin -->
|
<item id="5895" chance="15" /><!-- fish fin -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -38,4 +38,7 @@
|
|||||||
<item id="3265" chance="16" /><!-- two handed sword -->
|
<item id="3265" chance="16" /><!-- two handed sword -->
|
||||||
<item id="3029" chance="5" /><!-- small sapphire -->
|
<item id="3029" chance="5" /><!-- small sapphire -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -48,4 +48,7 @@
|
|||||||
<item id="3373" chance="6" /><!-- strange helmet -->
|
<item id="3373" chance="6" /><!-- strange helmet -->
|
||||||
<item id="3567" chance="6" /><!-- blue robe -->
|
<item id="3567" chance="6" /><!-- blue robe -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -45,4 +45,7 @@
|
|||||||
<item id="3061" chance="10" /><!-- life crystal -->
|
<item id="3061" chance="10" /><!-- life crystal -->
|
||||||
<item id="5895" chance="10" /><!-- fish fin -->
|
<item id="5895" chance="10" /><!-- fish fin -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -44,4 +44,7 @@
|
|||||||
<item id="5895" chance="20" /><!-- fish fin -->
|
<item id="5895" chance="20" /><!-- fish fin -->
|
||||||
<item id="3381" chance="8" /><!-- crown armor -->
|
<item id="3381" chance="8" /><!-- crown armor -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -36,4 +36,7 @@
|
|||||||
<item id="3028" chance="9" /><!-- small diamond -->
|
<item id="3028" chance="9" /><!-- small diamond -->
|
||||||
<item id="5895" chance="9" /><!-- fish fin -->
|
<item id="5895" chance="9" /><!-- fish fin -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -45,4 +45,7 @@
|
|||||||
<item id="3581" chance="54" /><!-- shrimp -->
|
<item id="3581" chance="54" /><!-- shrimp -->
|
||||||
<item id="5895" chance="24" /><!-- fish fin -->
|
<item id="5895" chance="24" /><!-- fish fin -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -28,4 +28,7 @@
|
|||||||
<item id="5678" countmax="3" chance="10" /><!-- tortoise egg -->
|
<item id="5678" countmax="3" chance="10" /><!-- tortoise egg -->
|
||||||
<item id="3279" chance="10" /><!-- war hammer -->
|
<item id="3279" chance="10" /><!-- war hammer -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -67,4 +67,7 @@
|
|||||||
<item id="5668" chance="2" /><!-- mysterious voodoo skull -->
|
<item id="5668" chance="2" /><!-- mysterious voodoo skull -->
|
||||||
<item id="3155" countmax="8" chance="42" /><!-- sudden death rune -->
|
<item id="3155" countmax="8" chance="42" /><!-- sudden death rune -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -62,4 +62,7 @@
|
|||||||
<item id="3340" chance="4" /><!-- heavy mace -->
|
<item id="3340" chance="4" /><!-- heavy mace -->
|
||||||
<item id="3342" chance="4" /><!-- war axe -->
|
<item id="3342" chance="4" /><!-- war axe -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -62,4 +62,7 @@
|
|||||||
<item id="5668" chance="1" /><!-- mysterious voodoo skull -->
|
<item id="5668" chance="1" /><!-- mysterious voodoo skull -->
|
||||||
<item id="3342" chance="95" /><!-- war axe -->
|
<item id="3342" chance="95" /><!-- war axe -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -47,4 +47,7 @@
|
|||||||
<item id="3071" chance="8" /><!-- wand of inferno -->
|
<item id="3071" chance="8" /><!-- wand of inferno -->
|
||||||
<item id="3010" chance="5" /><!-- emerald bangle -->
|
<item id="3010" chance="5" /><!-- emerald bangle -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3426" countmax="1" chance="50" /> <!-- a studded shield -->
|
<item id="3426" countmax="1" chance="50" /> <!-- a studded shield -->
|
||||||
<item id="2920" countmax="1" chance="50" /> <!-- a torch -->
|
<item id="2920" countmax="1" chance="50" /> <!-- a torch -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -65,4 +65,7 @@
|
|||||||
<item id="3033" countmax="4" chance="12" /> <!-- a small amethyst -->
|
<item id="3033" countmax="4" chance="12" /> <!-- a small amethyst -->
|
||||||
<item id="3032" countmax="3" chance="6" /> <!-- a small emerald -->
|
<item id="3032" countmax="3" chance="6" /> <!-- a small emerald -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -68,4 +68,7 @@
|
|||||||
<item id="3004" countmax="1" chance="5" /> <!-- a wedding ring -->
|
<item id="3004" countmax="1" chance="5" /> <!-- a wedding ring -->
|
||||||
<item id="3026" countmax="1" chance="10" /> <!-- a white pearl -->
|
<item id="3026" countmax="1" chance="10" /> <!-- a white pearl -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -59,4 +59,7 @@
|
|||||||
<item id="5893" countmax="1" chance="9" /> <!-- perfect behemoth fang -->
|
<item id="5893" countmax="1" chance="9" /> <!-- perfect behemoth fang -->
|
||||||
<item id="5930" countmax="1" chance="9" /> <!-- behemoth claw -->
|
<item id="5930" countmax="1" chance="9" /> <!-- behemoth claw -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -55,4 +55,7 @@
|
|||||||
<item id="3114" countmax="1" chance="200" /> <!-- a skull -->
|
<item id="3114" countmax="1" chance="200" /> <!-- a skull -->
|
||||||
<item id="5925" countmax="1" chance="10" /> <!-- a hardened bone -->
|
<item id="5925" countmax="1" chance="10" /> <!-- a hardened bone -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -48,4 +48,7 @@
|
|||||||
<item id="3738" countmax="1" chance="5" /> <!-- a sling herb -->
|
<item id="3738" countmax="1" chance="5" /> <!-- a sling herb -->
|
||||||
<item id="3738" countmax="1" chance="5" /> <!-- a sling herb -->
|
<item id="3738" countmax="1" chance="5" /> <!-- a sling herb -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -30,4 +30,7 @@
|
|||||||
<item id="3031" countmax="2" chance="850" /> <!-- a gold coin -->
|
<item id="3031" countmax="2" chance="850" /> <!-- a gold coin -->
|
||||||
<item id="3492" countmax="3" chance="500" /> <!-- a worm -->
|
<item id="3492" countmax="3" chance="500" /> <!-- a worm -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -28,4 +28,7 @@
|
|||||||
<item id="3559" countmax="1" chance="80" /> <!-- leather legs -->
|
<item id="3559" countmax="1" chance="80" /> <!-- leather legs -->
|
||||||
<item id="3577" countmax="4" chance="700" /> <!-- meat -->
|
<item id="3577" countmax="4" chance="700" /> <!-- meat -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -40,4 +40,7 @@
|
|||||||
<item id="3294" countmax="1" chance="80" /> <!-- a short sword -->
|
<item id="3294" countmax="1" chance="80" /> <!-- a short sword -->
|
||||||
<item id="3012" countmax="1" chance="2" /> <!-- a wolf tooth chain -->
|
<item id="3012" countmax="1" chance="2" /> <!-- a wolf tooth chain -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -81,4 +81,7 @@
|
|||||||
<item id="5954" countmax="1" chance="100" /> <!-- a demon horn -->
|
<item id="5954" countmax="1" chance="100" /> <!-- a demon horn -->
|
||||||
<item id="5776" countmax="1" chance="1" /> <!-- a Sabrehaven talon -->
|
<item id="5776" countmax="1" chance="1" /> <!-- a Sabrehaven talon -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3287" countmax="3" chance="100" /> <!-- a throwing star -->
|
<item id="3287" countmax="3" chance="100" /> <!-- a throwing star -->
|
||||||
<item id="2920" countmax="1" chance="500" /> <!-- a torch -->
|
<item id="2920" countmax="1" chance="500" /> <!-- a torch -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -63,4 +63,7 @@
|
|||||||
<item id="5877" countmax="1" chance="10" /> <!-- green dragon leather -->
|
<item id="5877" countmax="1" chance="10" /> <!-- green dragon leather -->
|
||||||
<item id="5920" countmax="1" chance="10" /> <!-- green dragon scale -->
|
<item id="5920" countmax="1" chance="10" /> <!-- green dragon scale -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -64,4 +64,7 @@
|
|||||||
<item id="5882" countmax="1" chance="18" /> <!-- red dragon scale -->
|
<item id="5882" countmax="1" chance="18" /> <!-- red dragon scale -->
|
||||||
<item id="5948" countmax="1" chance="10" /> <!-- red dragon leather -->
|
<item id="5948" countmax="1" chance="10" /> <!-- red dragon leather -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3723" countmax="1" chance="500" /> <!-- a white mushroom -->
|
<item id="3723" countmax="1" chance="500" /> <!-- a white mushroom -->
|
||||||
<item id="5880" countmax="1" chance="7" /> <!-- iron ore -->
|
<item id="5880" countmax="1" chance="7" /> <!-- iron ore -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -53,4 +53,7 @@
|
|||||||
<item id="3723" countmax="2" chance="600" /> <!-- a white mushroom -->
|
<item id="3723" countmax="2" chance="600" /> <!-- a white mushroom -->
|
||||||
<item id="5880" countmax="1" chance="1" /> <!-- Iron Ore -->
|
<item id="5880" countmax="1" chance="1" /> <!-- Iron Ore -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -40,4 +40,7 @@
|
|||||||
<item id="3723" countmax="2" chance="550" /> <!-- a white mushroom -->
|
<item id="3723" countmax="2" chance="550" /> <!-- a white mushroom -->
|
||||||
<item id="5880" countmax="1" chance="8" /> <!-- iron ore -->
|
<item id="5880" countmax="1" chance="8" /> <!-- iron ore -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -42,4 +42,7 @@
|
|||||||
<item id="3723" countmax="2" chance="400" /> <!-- a white mushroom -->
|
<item id="3723" countmax="2" chance="400" /> <!-- a white mushroom -->
|
||||||
<item id="5880" countmax="1" chance="6" /> <!-- iron ore -->
|
<item id="5880" countmax="1" chance="6" /> <!-- iron ore -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -34,4 +34,7 @@
|
|||||||
<item id="3130" countmax="1" chance="80" /> <!-- twigs -->
|
<item id="3130" countmax="1" chance="80" /> <!-- twigs -->
|
||||||
<item id="3412" countmax="1" chance="150" /> <!-- a wooden shield -->
|
<item id="3412" countmax="1" chance="150" /> <!-- a wooden shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -49,4 +49,7 @@
|
|||||||
<item id="3336" countmax="1" chance="80" /> <!-- a studded club -->
|
<item id="3336" countmax="1" chance="80" /> <!-- a studded club -->
|
||||||
<item id="3012" countmax="1" chance="2" /> <!-- a wolf tooth chain -->
|
<item id="3012" countmax="1" chance="2" /> <!-- a wolf tooth chain -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -43,4 +43,7 @@
|
|||||||
<item id="3049" countmax="1" chance="2" /> <!-- a stealth ring -->
|
<item id="3049" countmax="1" chance="2" /> <!-- a stealth ring -->
|
||||||
<item id="5909" countmax="1" chance="8" /> <!-- white piece of cloth -->
|
<item id="5909" countmax="1" chance="8" /> <!-- white piece of cloth -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -42,4 +42,7 @@
|
|||||||
<item id="3492" countmax="6" chance="800" /> <!-- a worm -->
|
<item id="3492" countmax="6" chance="800" /> <!-- a worm -->
|
||||||
<item id="5913" countmax="1" chance="10" /> <!-- a brown piece of cloth -->
|
<item id="5913" countmax="1" chance="10" /> <!-- a brown piece of cloth -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -49,4 +49,7 @@
|
|||||||
<item id="3053" countmax="1" chance="7" /> <!-- a time ring -->
|
<item id="3053" countmax="1" chance="7" /> <!-- a time ring -->
|
||||||
<item id="5879" countmax="1" chance="21" /> <!-- spider silk -->
|
<item id="5879" countmax="1" chance="21" /> <!-- spider silk -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -43,4 +43,7 @@
|
|||||||
<item id="3462" countmax="1" chance="100" /> <!-- a small axe -->
|
<item id="3462" countmax="1" chance="100" /> <!-- a small axe -->
|
||||||
<item id="1781" countmax="3" chance="300" /> <!-- a small stone -->
|
<item id="1781" countmax="3" chance="300" /> <!-- a small stone -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -63,4 +63,7 @@
|
|||||||
<item id="3004" countmax="1" chance="50" /> <!-- a wedding ring -->
|
<item id="3004" countmax="1" chance="50" /> <!-- a wedding ring -->
|
||||||
<item id="5911" countmax="1" chance="25" /> <!-- a red piece of cloth -->
|
<item id="5911" countmax="1" chance="25" /> <!-- a red piece of cloth -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -60,4 +60,7 @@
|
|||||||
<item id="3081" countmax="1" chance="8" /> <!-- a stone skin amulet -->
|
<item id="3081" countmax="1" chance="8" /> <!-- a stone skin amulet -->
|
||||||
<item id="3369" countmax="1" chance="10" /> <!-- a warrior helmet -->
|
<item id="3369" countmax="1" chance="10" /> <!-- a warrior helmet -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3084" countmax="1" chance="10" /> <!-- a protection amulet -->
|
<item id="3084" countmax="1" chance="10" /> <!-- a protection amulet -->
|
||||||
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -28,4 +28,7 @@
|
|||||||
<item id="3031" countmax="10" chance="350" /> <!-- a gold coin -->
|
<item id="3031" countmax="10" chance="350" /> <!-- a gold coin -->
|
||||||
<item id="3577" countmax="1" chance="300" /> <!-- meat -->
|
<item id="3577" countmax="1" chance="300" /> <!-- meat -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -73,4 +73,7 @@
|
|||||||
<item id="3373" countmax="1" chance="5" /> <!-- a strange helmet -->
|
<item id="3373" countmax="1" chance="5" /> <!-- a strange helmet -->
|
||||||
<item id="3026" countmax="1" chance="25" /> <!-- a white pearl -->
|
<item id="3026" countmax="1" chance="25" /> <!-- a white pearl -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -42,4 +42,7 @@
|
|||||||
<item id="5876" countmax="1" chance="9" /> <!-- lizard leather -->
|
<item id="5876" countmax="1" chance="9" /> <!-- lizard leather -->
|
||||||
<item id="5881" countmax="1" chance="9" /><!-- lizard scale -->
|
<item id="5881" countmax="1" chance="9" /><!-- lizard scale -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -57,4 +57,7 @@
|
|||||||
<item id="5876" countmax="1" chance="9" /> <!-- lizard leather -->
|
<item id="5876" countmax="1" chance="9" /> <!-- lizard leather -->
|
||||||
<item id="5881" countmax="1" chance="9" /><!-- lizard scale -->
|
<item id="5881" countmax="1" chance="9" /><!-- lizard scale -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="5876" countmax="1" chance="10" /> <!-- lizard leather -->
|
<item id="5876" countmax="1" chance="10" /> <!-- lizard leather -->
|
||||||
<item id="5881" countmax="1" chance="10" /><!-- lizard scale -->
|
<item id="5881" countmax="1" chance="10" /><!-- lizard scale -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -54,4 +54,7 @@
|
|||||||
<item id="3072" countmax="1" chance="10" /> <!-- a wand of plague -->
|
<item id="3072" countmax="1" chance="10" /> <!-- a wand of plague -->
|
||||||
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3264" countmax="1" chance="100" /> <!-- a sword -->
|
<item id="3264" countmax="1" chance="100" /> <!-- a sword -->
|
||||||
<item id="5878" countmax="1" chance="8" /> <!-- minotaur leather -->
|
<item id="5878" countmax="1" chance="8" /> <!-- minotaur leather -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -41,4 +41,7 @@
|
|||||||
<item id="3375" countmax="1" chance="20" /> <!-- a soldier helmet -->
|
<item id="3375" countmax="1" chance="20" /> <!-- a soldier helmet -->
|
||||||
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -37,4 +37,7 @@
|
|||||||
<item id="3577" countmax="1" chance="100" /> <!-- meat -->
|
<item id="3577" countmax="1" chance="100" /> <!-- meat -->
|
||||||
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -53,4 +53,7 @@
|
|||||||
<item id="3073" countmax="1" chance="5" /> <!-- a wand of cosmic energy -->
|
<item id="3073" countmax="1" chance="5" /> <!-- a wand of cosmic energy -->
|
||||||
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
<item id="5878" countmax="1" chance="10" /> <!-- minotaur leather -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -55,4 +55,7 @@
|
|||||||
<item id="3294" countmax="1" chance="150" /> <!-- a short sword -->
|
<item id="3294" countmax="1" chance="150" /> <!-- a short sword -->
|
||||||
<item id="3324" countmax="1" chance="1" /> <!-- a skull staff -->
|
<item id="3324" countmax="1" chance="1" /> <!-- a skull staff -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -34,4 +34,7 @@
|
|||||||
<item id="3376" countmax="1" chance="90" /> <!-- a studded helmet -->
|
<item id="3376" countmax="1" chance="90" /> <!-- a studded helmet -->
|
||||||
<item id="3426" countmax="1" chance="100" /> <!-- a studded shield -->
|
<item id="3426" countmax="1" chance="100" /> <!-- a studded shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -38,4 +38,7 @@
|
|||||||
<item id="3582" countmax="1" chance="170" /> <!-- ham -->
|
<item id="3582" countmax="1" chance="170" /> <!-- ham -->
|
||||||
<item id="2914" countmax="1" chance="80" /> <!-- a lamp -->
|
<item id="2914" countmax="1" chance="80" /> <!-- a lamp -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -47,4 +47,7 @@
|
|||||||
<item id="3298" countmax="4" chance="100" /> <!-- a throwing knife -->
|
<item id="3298" countmax="4" chance="100" /> <!-- a throwing knife -->
|
||||||
<item id="3369" countmax="1" chance="1" /> <!-- a warrior helmet -->
|
<item id="3369" countmax="1" chance="1" /> <!-- a warrior helmet -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -43,4 +43,7 @@
|
|||||||
<item id="2920" countmax="1" chance="80" /> <!-- a torch -->
|
<item id="2920" countmax="1" chance="80" /> <!-- a torch -->
|
||||||
<item id="3012" countmax="1" chance="100" /> <!-- a wolf tooth chain -->
|
<item id="3012" countmax="1" chance="100" /> <!-- a wolf tooth chain -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -54,4 +54,7 @@
|
|||||||
<item id="3289" countmax="1" chance="70" /> <!-- a staff -->
|
<item id="3289" countmax="1" chance="70" /> <!-- a staff -->
|
||||||
<item id="3072" countmax="1" chance="10" /> <!-- a wand of plague -->
|
<item id="3072" countmax="1" chance="10" /> <!-- a wand of plague -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -35,4 +35,7 @@
|
|||||||
<item id="3376" countmax="1" chance="90" /> <!-- a studded helmet -->
|
<item id="3376" countmax="1" chance="90" /> <!-- a studded helmet -->
|
||||||
<item id="3362" countmax="1" chance="100" /> <!-- studded legs -->
|
<item id="3362" countmax="1" chance="100" /> <!-- studded legs -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -55,4 +55,7 @@
|
|||||||
<item id="3287" countmax="40" chance="300" /> <!-- a throwing star -->
|
<item id="3287" countmax="40" chance="300" /> <!-- a throwing star -->
|
||||||
<item id="3265" countmax="1" chance="20" /> <!-- a two handed sword -->
|
<item id="3265" countmax="1" chance="20" /> <!-- a two handed sword -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -35,4 +35,7 @@
|
|||||||
<item id="3273" countmax="1" chance="500" /> <!-- a sabre -->
|
<item id="3273" countmax="1" chance="500" /> <!-- a sabre -->
|
||||||
<item id="3412" countmax="1" chance="180" /> <!-- a wooden shield -->
|
<item id="3412" countmax="1" chance="180" /> <!-- a wooden shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -58,4 +58,7 @@
|
|||||||
<item id="3727" countmax="1" chance="35" /> <!-- a wood mushroom -->
|
<item id="3727" countmax="1" chance="35" /> <!-- a wood mushroom -->
|
||||||
<item id="2948" countmax="1" chance="14" /> <!-- a wooden flute -->
|
<item id="2948" countmax="1" chance="14" /> <!-- a wooden flute -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -35,4 +35,7 @@
|
|||||||
<item id="3426" countmax="1" chance="100" /> <!-- a studded shield -->
|
<item id="3426" countmax="1" chance="100" /> <!-- a studded shield -->
|
||||||
<item id="3244" countmax="1" chance="1000" /> <!-- an old backpack -->
|
<item id="3244" countmax="1" chance="1000" /> <!-- an old backpack -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -58,4 +58,7 @@
|
|||||||
<item id="3394" countmax="1" chance="6" /> <!-- an amazon armor -->
|
<item id="3394" countmax="1" chance="6" /> <!-- an amazon armor -->
|
||||||
<item id="3437" countmax="1" chance="4" /> <!-- an amazon shield -->
|
<item id="3437" countmax="1" chance="4" /> <!-- an amazon shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -25,4 +25,7 @@
|
|||||||
<item id="3031" countmax="4" chance="700" /> <!-- a gold coin -->
|
<item id="3031" countmax="4" chance="700" /> <!-- a gold coin -->
|
||||||
<item id="3492" countmax="3" chance="500" /> <!-- a worm -->
|
<item id="3492" countmax="3" chance="500" /> <!-- a worm -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -35,4 +35,7 @@
|
|||||||
<item id="3264" countmax="1" chance="30" /> <!-- a sword -->
|
<item id="3264" countmax="1" chance="30" /> <!-- a sword -->
|
||||||
<item id="3492" countmax="5" chance="500" /> <!-- a worm -->
|
<item id="3492" countmax="5" chance="500" /> <!-- a worm -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -77,4 +77,7 @@
|
|||||||
<item id="3373" countmax="1" chance="6" /> <!-- a strange helmet -->
|
<item id="3373" countmax="1" chance="6" /> <!-- a strange helmet -->
|
||||||
<item id="3428" countmax="1" chance="4" /> <!-- a tower shield -->
|
<item id="3428" countmax="1" chance="4" /> <!-- a tower shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -45,4 +45,7 @@
|
|||||||
<item id="1781" countmax="3" chance="300" /> <!-- a small stone -->
|
<item id="1781" countmax="3" chance="300" /> <!-- a small stone -->
|
||||||
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
<item id="5883" countmax="1" chance="8" /> <!-- ape fur -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -35,4 +35,7 @@
|
|||||||
<item id="2920" countmax="1" chance="500" /> <!-- a torch -->
|
<item id="2920" countmax="1" chance="500" /> <!-- a torch -->
|
||||||
<item id="3367" countmax="1" chance="80" /> <!-- a viking helmet -->
|
<item id="3367" countmax="1" chance="80" /> <!-- a viking helmet -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -33,4 +33,7 @@
|
|||||||
<item id="3552" countmax="1" chance="100" /> <!-- leather boots -->
|
<item id="3552" countmax="1" chance="100" /> <!-- leather boots -->
|
||||||
<item id="2920" countmax="1" chance="150" /> <!-- a torch -->
|
<item id="2920" countmax="1" chance="150" /> <!-- a torch -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -38,4 +38,7 @@
|
|||||||
<item id="3351" countmax="1" chance="10" /> <!-- a steel helmet -->
|
<item id="3351" countmax="1" chance="10" /> <!-- a steel helmet -->
|
||||||
<item id="3053" countmax="1" chance="1" /> <!-- a time ring -->
|
<item id="3053" countmax="1" chance="1" /> <!-- a time ring -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -39,4 +39,7 @@
|
|||||||
<item id="3336" countmax="1" chance="50" /> <!-- a studded club -->
|
<item id="3336" countmax="1" chance="50" /> <!-- a studded club -->
|
||||||
<item id="3412" countmax="1" chance="150" /> <!-- a wooden shield -->
|
<item id="3412" countmax="1" chance="150" /> <!-- a wooden shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -54,4 +54,7 @@
|
|||||||
<item id="3373" countmax="1" chance="4" /> <!-- a strange helmet -->
|
<item id="3373" countmax="1" chance="4" /> <!-- a strange helmet -->
|
||||||
<item id="3434" countmax="1" chance="1" /> <!-- a vampire shield -->
|
<item id="3434" countmax="1" chance="1" /> <!-- a vampire shield -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -82,4 +82,7 @@
|
|||||||
<item id="3081" countmax="1" chance="5" /> <!-- a stone skin amulet -->
|
<item id="3081" countmax="1" chance="5" /> <!-- a stone skin amulet -->
|
||||||
<item id="3034" countmax="1" chance="11" /> <!-- a talon -->
|
<item id="3034" countmax="1" chance="11" /> <!-- a talon -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -29,4 +29,7 @@
|
|||||||
<loot>
|
<loot>
|
||||||
<item id="5902" countmax="1" chance="30" /> <!-- honeycomb -->
|
<item id="5902" countmax="1" chance="30" /> <!-- honeycomb -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
@ -25,4 +25,7 @@
|
|||||||
<item id="3492" countmax="1" chance="100" /> <!-- a worm -->
|
<item id="3492" countmax="1" chance="100" /> <!-- a worm -->
|
||||||
<item id="5897" countmax="1" chance="8" /> <!-- wolf paw -->
|
<item id="5897" countmax="1" chance="8" /> <!-- wolf paw -->
|
||||||
</loot>
|
</loot>
|
||||||
|
<script>
|
||||||
|
<event name="KillingInTheNameOf" />
|
||||||
|
</script>
|
||||||
</monster>
|
</monster>
|
Loading…
x
Reference in New Issue
Block a user