summaryrefslogtreecommitdiff
path: root/npc/functions/captcha.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-05-16 20:00:11 -0300
committerJesusaves <cpntb1@ymail.com>2024-05-16 20:00:11 -0300
commit65dc69b9c61a1b3020653296c22ff1d2b08b48f5 (patch)
tree7c82233b1dd9fda491826f86dd04db58bc0604cc /npc/functions/captcha.txt
parentfce43ff827bb2d2748731fa741fa66b9f71066fb (diff)
downloadserverdata-65dc69b9c61a1b3020653296c22ff1d2b08b48f5.tar.gz
serverdata-65dc69b9c61a1b3020653296c22ff1d2b08b48f5.tar.bz2
serverdata-65dc69b9c61a1b3020653296c22ff1d2b08b48f5.tar.xz
serverdata-65dc69b9c61a1b3020653296c22ff1d2b08b48f5.zip
Improve Botter Syndrome + Safeguard to division by zero
Diffstat (limited to 'npc/functions/captcha.txt')
-rw-r--r--npc/functions/captcha.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/functions/captcha.txt b/npc/functions/captcha.txt
index dc4cb8147..b2c9b5a13 100644
--- a/npc/functions/captcha.txt
+++ b/npc/functions/captcha.txt
@@ -150,8 +150,8 @@ OnTimer800000:
initnpctimer;
end;
-// Pick a random target for captcha checks, which happens every 5 seconds
-OnTimer5000:
+// Pick a random target for captcha checks, which happens every 10 seconds
+OnTimer10000:
// Script disabled by admins
if (!$CAPTCHA) {
initnpctimer;
@@ -258,13 +258,13 @@ OnTimer5000:
if (!playerattached())
break;
/////////////////////////////////////////////////////////////////
- // The chance of you contracting the Syndrome starts at 70.0%
- .@chance = 700;
- // You killed less than 4 monsters, fall to 40.0%
- if (.@mpk + 4 > MONSTERS_KILLED)
- .@chance -= 300;
- // (If you killed less than 7 monsters, fall to 55.0% instead)
- else if (.@mpk + 7 > MONSTERS_KILLED)
+ // The chance of you contracting the Syndrome starts at 65.0%
+ .@chance = 650;
+ // You killed less than 7 monsters, fall to 40.0%
+ if (.@mpk + 7 > MONSTERS_KILLED)
+ .@chance -= 250;
+ // (If you killed less than 12 monsters, fall to 55.0% instead)
+ else if (.@mpk + 12 > MONSTERS_KILLED)
.@chance -= 150;
// If you interacted with any NPC, it falls to 27.5%
if (@npctalk+600 > gettimetick(2))