diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-20 11:40:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-20 11:40:31 -0300 |
commit | 858ade157daeb10253cd8023a20662f5361f42e6 (patch) | |
tree | 22d812ac0133a892a002bdbd62c81b9396bed232 /npc/020-7-1/core.txt | |
parent | 9854e636dc8e3468c5115bfacebd1eb7bdf9b192 (diff) | |
download | serverdata-858ade157daeb10253cd8023a20662f5361f42e6.tar.gz serverdata-858ade157daeb10253cd8023a20662f5361f42e6.tar.bz2 serverdata-858ade157daeb10253cd8023a20662f5361f42e6.tar.xz serverdata-858ade157daeb10253cd8023a20662f5361f42e6.zip |
Lower luck effect over spellbook pages, raise base drop rate instead
Diffstat (limited to 'npc/020-7-1/core.txt')
-rw-r--r-- | npc/020-7-1/core.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/020-7-1/core.txt b/npc/020-7-1/core.txt index 015b23ffa..1dae575d8 100644 --- a/npc/020-7-1/core.txt +++ b/npc/020-7-1/core.txt @@ -230,7 +230,7 @@ function script BSProccessDeath { if (playerattached()) { getmapxy(.@m$, .@x, .@y, 0); // Capped at ~12% drop chance of book pages - if (rand(0,10000) <= 560+(readparam(bLuck)*7)) + if (rand(0,10000) <= 660+(readparam(bLuck)*6)) makeitem SpellBookPage, 1, .@m$, .@x, .@y; if (rand(0,10000) <= 100) makeitem Candy, 1, .@m$, .@x, .@y; |