diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-08 19:54:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-08 19:54:04 -0300 |
commit | 55263623c689096e00c88af069d1b210d28f622f (patch) | |
tree | 191e3132dcbea70b2b0f049593cd02831745dbde /npc/soren-2/main.txt | |
parent | d0bbbb98a0115533fe277c6c5f9651074cf21fc9 (diff) | |
download | serverdata-55263623c689096e00c88af069d1b210d28f622f.tar.gz serverdata-55263623c689096e00c88af069d1b210d28f622f.tar.bz2 serverdata-55263623c689096e00c88af069d1b210d28f622f.tar.xz serverdata-55263623c689096e00c88af069d1b210d28f622f.zip |
Decreast normal mob spawn on soren-2 to 40% and increase normal drop to 20%
Diffstat (limited to 'npc/soren-2/main.txt')
-rw-r--r-- | npc/soren-2/main.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/soren-2/main.txt b/npc/soren-2/main.txt index dd0928074..404cb66b5 100644 --- a/npc/soren-2/main.txt +++ b/npc/soren-2/main.txt @@ -68,8 +68,8 @@ OnSanctum: // 1%: Super Rare drop // 9%: Rare Drop - // 10%: Normal Drop - // 50%: Normal Spawn + // 20%: Normal Drop + // 40%: Normal Spawn // 10%: Rare Spawn // 19%: Drop + Spawn // 1%: Super Rare Spawn @@ -135,9 +135,9 @@ OnSanctum: // Core Logic, part 3 // Make Items or Monsters - if (.@odds <= 2000) { + if (.@odds <= 3000) { makeitem(.@itemId, 1, .map$, rand(.@lx, .@ux), rand(.@ly, .@uy)); - } else if (.@odds <= 8000 || .@odds > 9900) { + } else if (.@odds <= 7000 || .@odds > 9900) { areamonster .map$, .@lx, .@ly, .@ux, .@uy, strmobinfo(1, .@monsterId), .@monsterId, .@amount; } else { areamonster .map$, .@lx, .@ly, .@ux, .@uy, strmobinfo(1, .@monsterId), .@monsterId, .@amount; |