diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-01-09 16:49:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-01-09 16:49:15 -0300 |
commit | 610fd448ec12776219f7f5e21b6f31ce1694475d (patch) | |
tree | aca2c01ec1f56f78798f73c30c658b07b2ee1a0c /npc/015-3 | |
parent | e596bb4072ff35a732e4a18e56b4fd7587a8ed8f (diff) | |
download | serverdata-610fd448ec12776219f7f5e21b6f31ce1694475d.tar.gz serverdata-610fd448ec12776219f7f5e21b6f31ce1694475d.tar.bz2 serverdata-610fd448ec12776219f7f5e21b6f31ce1694475d.tar.xz serverdata-610fd448ec12776219f7f5e21b6f31ce1694475d.zip |
Minor fixes and start writing Pooh
Diffstat (limited to 'npc/015-3')
-rw-r--r-- | npc/015-3/pooh.txt | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/npc/015-3/pooh.txt b/npc/015-3/pooh.txt index 95e64613b..2c07c650d 100644 --- a/npc/015-3/pooh.txt +++ b/npc/015-3/pooh.txt @@ -1,12 +1,30 @@ // TMW2 scripts. // Author: +// Diogo RBG from TMW-BR // Jesusalva // Description: -// A bee keeper +// This is a very cute bear, it'll definitely earn your sympathy. +// Pooh (original) has became Public Domain in January 2022. 015-3,127,181,0 script Pooh NPC_POOH,{ - mesn; - mesq l("OMG so cute! This must be the cutest bear you ever seen your whole life."); + .@q = getq(HurnscaldQuest_TeddyBear); + mesc l("OMG so cute! This must be the cutest bear you ever seen your whole life."); + // Minimum level not met + if (BaseLevel < 39) + close; + mesc l("It seems to be concentrated on its small pot... So concentrated, it doesn't even realizes you're there."); + mesc l("This is so amusing, you decide to stare for a while longer."); + next; + // Quest already finished + if (.@q >= 3) { + mesc l("It looks at you with a pleasant smile, you definitely earned a new cute friend!"); + close; + } + mesc l("And then you notice the small teddy is opening and closing the lid of this pot repeated times, as if it were looking for something."); + mesc l("You ask yourself: What is the teddy looking for? How can I help him?"); + next; + // Main menu + mesc "FIXME", 1; close; OnInit: |