diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-16 15:15:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-16 15:15:48 -0300 |
commit | 601331444841c536f6b7323384a5ced8ba500e84 (patch) | |
tree | b4c4f77d6e29ccb424c2862d8b83924d173b8ba1 /npc/003-1/ched.txt | |
parent | 43f791b9e0c0a0fe7d01740e3a516d95d7d860ab (diff) | |
download | serverdata-601331444841c536f6b7323384a5ced8ba500e84.tar.gz serverdata-601331444841c536f6b7323384a5ced8ba500e84.tar.bz2 serverdata-601331444841c536f6b7323384a5ced8ba500e84.tar.xz serverdata-601331444841c536f6b7323384a5ced8ba500e84.zip |
On Summer Ched will keep the beach spoiler if Level < 25
Diffstat (limited to 'npc/003-1/ched.txt')
-rw-r--r-- | npc/003-1/ched.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/003-1/ched.txt b/npc/003-1/ched.txt index 7e89a7b13..d4b6038e9 100644 --- a/npc/003-1/ched.txt +++ b/npc/003-1/ched.txt @@ -41,7 +41,7 @@ delitem CherryCocktail, countitem(CherryCocktail); delitem AppleCocktail, countitem(AppleCocktail); - getexp rand(.@pts-1, .@pts*11/10), rand(0,.@pts/25); + getexp rand2(.@pts-1, .@pts*11/10), rand2(0,.@pts/25); setq2 SQuest_Ched, @ched+.@pts; @ched=getq2(SQuest_Ched); @@ -75,7 +75,10 @@ L_Summer: if (BaseLevel < 25) { mesn; - mesq l("Get Rekt Noob."); + if (rand2(0,10) == 6) + mesq l("I wanted to go to the beach, but I can't find the cave entrance. They told me to look around here... What am I doing wrong?"); + else + mesq l("Get Rekt Noob."); close; } |