diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-15 16:02:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-15 16:02:27 -0300 |
commit | f889d2878da822b86aea1b1916f64440b8b6d8f6 (patch) | |
tree | d2a4c7de0011d9b9bda621305ccb5f5153f95d41 /npc | |
parent | f9096ffb3cc5228188723d3c7a8c95e753b32e19 (diff) | |
download | serverdata-f889d2878da822b86aea1b1916f64440b8b6d8f6.tar.gz serverdata-f889d2878da822b86aea1b1916f64440b8b6d8f6.tar.bz2 serverdata-f889d2878da822b86aea1b1916f64440b8b6d8f6.tar.xz serverdata-f889d2878da822b86aea1b1916f64440b8b6d8f6.zip |
Silk Coocon x10
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/class.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/class.txt b/npc/functions/class.txt index 85a28fb0e..c20e49a6b 100644 --- a/npc/functions/class.txt +++ b/npc/functions/class.txt @@ -104,11 +104,11 @@ L_Tier2: mesq l("But whoa, not so fast! You must pass the seven steps of a trial first!"); next; mesn; - mesq l("The first trial is simple, I'm not doing anything in special. Bring me 1 @@, or 20 @@ and 20 @@.", getitemlink(DivineApple), getitemlink(SilkCocoon), getitemlink(ChocolateMouboo)); + mesq l("The first trial is simple, I'm not doing anything in special. Bring me 1 @@, or 200 @@ and 20 @@.", getitemlink(DivineApple), getitemlink(SilkCocoon), getitemlink(ChocolateMouboo)); next; switch(select( rif(countitem(DivineApple) >= 1, l("I got the apple.")), - rif(countitem(SilkCocoon) >= 20 && countitem(ChocolateMouboo) >= 20, l("I got the silk and chocolate.")), + rif(countitem(SilkCocoon) >= 200 && countitem(ChocolateMouboo) >= 20, l("I got the silk and chocolate.")), l("I will apply later."))) { case 1: @@ -116,7 +116,7 @@ L_Tier2: goto L_Tier2Ok; break; case 2: - delitem SilkCocoon, 20; + delitem SilkCocoon, 200; delitem ChocolateMouboo, 20; goto L_Tier2Ok; break; |