diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-23 09:22:36 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-23 09:22:36 -0200 |
commit | ef092b260e40ac60ea5847e4e69d34e8ee905b19 (patch) | |
tree | 17c1ba792b983a80410d0a1b82b3a8e731335d7f /npc | |
parent | 6d696ebe04849537d724877bcdab58b626d7b673 (diff) | |
download | serverdata-ef092b260e40ac60ea5847e4e69d34e8ee905b19.tar.gz serverdata-ef092b260e40ac60ea5847e4e69d34e8ee905b19.tar.bz2 serverdata-ef092b260e40ac60ea5847e4e69d34e8ee905b19.tar.xz serverdata-ef092b260e40ac60ea5847e4e69d34e8ee905b19.zip |
Dusty in a Bottle droprate: 0.4% to snipers, 0.2% to wildlife
Unaffected by @droprate
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-10/scripts.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/001-10/scripts.txt b/npc/001-10/scripts.txt index ef5042520..da1afcd6e 100644 --- a/npc/001-10/scripts.txt +++ b/npc/001-10/scripts.txt @@ -57,30 +57,44 @@ OnTouch: // Death handlers OnWLDeath: + if (rand(0,1000) <= 20) + getitem BottledDust, 1; spawner("#CODMASTER::OnWLDeath", 0, 0, 200, 150, 1, 1); end; OnNDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnNDeath", 0, 10, 200, 25); end; OnSDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnSDeath", 0, 129, 200, 150); end; OnCDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnCDeath", 73, 45, 132, 86); end; OnWDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnWDeath", 10, 25, 72, 122); end; OnEDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnEDeath", 160, 45, 190, 130); end; OnDeath: + if (rand(0,1000) <= 40) + getitem BottledDust, 1; spawner("#CODMASTER::OnDeath"); end; |