diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-22 14:39:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-22 14:39:12 -0300 |
commit | 064a8345e2efafe5634fe4bfead5a249e5298698 (patch) | |
tree | e3e1946bb528cf46b9f1c77f20c615b26c0223b7 /npc/003-1/lieutenantdausen.txt | |
parent | 6039dbeb8198c6890cb8e2d385c431a6ebad6122 (diff) | |
download | serverdata-064a8345e2efafe5634fe4bfead5a249e5298698.tar.gz serverdata-064a8345e2efafe5634fe4bfead5a249e5298698.tar.bz2 serverdata-064a8345e2efafe5634fe4bfead5a249e5298698.tar.xz serverdata-064a8345e2efafe5634fe4bfead5a249e5298698.zip |
Corrections and more floating drop rates during sieges
Diffstat (limited to 'npc/003-1/lieutenantdausen.txt')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 8667b1882..326ba235b 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -125,31 +125,31 @@ L_MKHuge: OnBlackScorpionDeath: areamonster("004-1", 0, 0, 79, 81, l("Black Scorpion"), 1074, 1, "Lieutenant Dausen::OnBlackScorpionDeath"); - if (rand(10000) <= 100) + if (rand(10000) <= 90+($@SIEGE_TULIM*10)) getitem StrangeCoin, 1; end; OnBlackScorpion2Death: - areamonster("003-1", 0, 0, 120, 155, l("Black Scorpion"), 1074, 1, "Lieutenant Dausen::OnBlackScorpionDeath"); - if (rand(10000) <= 1000) + areamonster("003-1", 0, 0, 120, 155, l("Black Scorpion"), 1074, 1, "Lieutenant Dausen::OnBlackScorpion2Death"); + if (rand(10000) <= 850+($@SIEGE_TULIM*100)) getitem StrangeCoin, 1; end; OnGreenSlimeDeath: areamonster("003-1", 0, 0, 120, 155, l("Green Slime"), 1085, 1, "Lieutenant Dausen::OnGreenSlimeDeath"); - if (rand(10000) <= 300) + if (rand(10000) <= 200+($@SIEGE_TULIM*100)) getitem StrangeCoin, 1; end; OnCandiedSlimeDeath: areamonster("003-1", 0, 0, 120, 155, l("Candied Slime"), 1089, 1, "Lieutenant Dausen::OnCandiedSlimeDeath"); - if (rand(10000) <= 250) + if (rand(10000) <= 150+($@SIEGE_TULIM*100)) getitem StrangeCoin, 1; end; OnManaGhostDeath: areamonster("003-1", 0, 0, 120, 155, l("Mana Ghost"), 1068, 1, "Lieutenant Dausen::OnManaGhostDeath"); - if (rand(10000) <= 1000) + if (rand(10000) <= 900+($@SIEGE_TULIM*100)) getitem StrangeCoin, 1; end; |