diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-08-28 00:45:19 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-08-28 00:45:19 +0000 |
commit | c51ed3e9f8f3cf9018a98f82e235a758408f59a5 (patch) | |
tree | 7f32f6f84df244c83f7499dfdb6f5a24d6276d2e /npc/012-7/celestia.txt | |
parent | bc06b71cf8d2254cc7518614e43a640ac00eed45 (diff) | |
download | serverdata-c51ed3e9f8f3cf9018a98f82e235a758408f59a5.tar.gz serverdata-c51ed3e9f8f3cf9018a98f82e235a758408f59a5.tar.bz2 serverdata-c51ed3e9f8f3cf9018a98f82e235a758408f59a5.tar.xz serverdata-c51ed3e9f8f3cf9018a98f82e235a758408f59a5.zip |
update Celestia.txt she ask for more Acorn and more Chocolate bar but give more exp.
Diffstat (limited to 'npc/012-7/celestia.txt')
-rw-r--r-- | npc/012-7/celestia.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/012-7/celestia.txt b/npc/012-7/celestia.txt index 2d270899e..b952ab22e 100644 --- a/npc/012-7/celestia.txt +++ b/npc/012-7/celestia.txt @@ -104,9 +104,9 @@ L_TeaQuest: mesq l("But I can still make it without cookies, as long that you bring me some other sweeties."); next; mesn l("Item List"); - mes l("@@/20 @@", countitem(Acorn), getitemlink(Acorn)); + mes l("@@/50 @@", countitem(Acorn), getitemlink(Acorn)); mes l("@@/20 @@", countitem(ChocolateMouboo), getitemlink(ChocolateMouboo)); - mes l("@@/20 @@", countitem(ChocolateBar), getitemlink(ChocolateBar)); + mes l("@@/40 @@", countitem(ChocolateBar), getitemlink(ChocolateBar)); mes l("@@/15 @@", countitem(Candy), getitemlink(Candy)); mes l("@@/15 @@", countitem(OrangeCupcake), getitemlink(OrangeCupcake)); mes l("@@/10 @@", countitem(CherryCake), getitemlink(CherryCake)); @@ -127,9 +127,9 @@ L_TeaQuest: L_TeaCheck: mesn l("Item List"); - mes l("@@/20 @@", countitem(Acorn), getitemlink(Acorn)); + mes l("@@/50 @@", countitem(Acorn), getitemlink(Acorn)); mes l("@@/20 @@", countitem(ChocolateMouboo), getitemlink(ChocolateMouboo)); - mes l("@@/20 @@", countitem(ChocolateBar), getitemlink(ChocolateBar)); + mes l("@@/40 @@", countitem(ChocolateBar), getitemlink(ChocolateBar)); mes l("@@/15 @@", countitem(Candy), getitemlink(Candy)); mes l("@@/15 @@", countitem(OrangeCupcake), getitemlink(OrangeCupcake)); mes l("@@/10 @@", countitem(CherryCake), getitemlink(CherryCake)); @@ -146,9 +146,9 @@ L_TeaCheck: goodbye; close; } - if (countitem(Acorn) < 20 || + if (countitem(Acorn) < 50 || countitem(ChocolateMouboo) < 20 || - countitem(ChocolateBar) < 20 || + countitem(ChocolateBar) < 40 || countitem(Candy) < 15 || countitem(OrangeCupcake) < 15 || countitem(CherryCake) < 10 || @@ -158,16 +158,16 @@ L_TeaCheck: inventoryplace CelestiaTea, 3; - delitem Acorn, 20; + delitem Acorn, 50; delitem ChocolateMouboo, 20; - delitem ChocolateBar, 20; + delitem ChocolateBar, 40; delitem Candy, 15; delitem OrangeCupcake, 15; delitem CherryCake, 10; delitem GingerBreadMan, 5; delitem ChocolateBiscuit, 2; - getexp rand(12000, 13000), 0; // level exp cap: 15,775 + getexp rand(12000, 30000), 0; // level exp cap: 15,775 NO ONE CAN COMPLETE THIS QUEST LEVEL 35 getitem CelestiaTea, 3; setq HurnscaldQuest_TeaParty, 2; |