diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-04 19:34:18 +0100 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-04 19:35:04 +0100 |
commit | 25eec028facef875c2da7046cd06edd268c23b05 (patch) | |
tree | 20c28457e907afe973d27ef4419f0c6278e2cae3 /npc | |
parent | 0d62113ca5c305477c8416c2b97b979eb64e31f6 (diff) | |
download | serverdata-25eec028facef875c2da7046cd06edd268c23b05.tar.gz serverdata-25eec028facef875c2da7046cd06edd268c23b05.tar.bz2 serverdata-25eec028facef875c2da7046cd06edd268c23b05.tar.xz serverdata-25eec028facef875c2da7046cd06edd268c23b05.zip |
Miriam adding asking options, needed agi set to 60, needed level to 60
Diffstat (limited to 'npc')
-rw-r--r-- | npc/032-1_Outback/miriam.txt | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/npc/032-1_Outback/miriam.txt b/npc/032-1_Outback/miriam.txt index 3c9cf608..d00db216 100644 --- a/npc/032-1_Outback/miriam.txt +++ b/npc/032-1_Outback/miriam.txt @@ -84,11 +84,21 @@ L_ask2: next; menu "Yes, here it is!",L_getitems, + "What was that again?", L_ask3, "No, not yet.",-; next; mes "\"So please hurry up!\""; close; - + +L_ask3: + mes "[Miriam]"; + mes "\"You have a small mind, haven't you? I am meditating here and I asked you to bring me stuff, so I can concentrate better.\""; + next; + mes "\"And stop asking so silly questions in the future.\""; + next; + mes "\"So, if you really want to help me now, bring me 5 [Concentration Potions] and 10 [Snake Tongues].\""; + close; + L_getitems: if (countitem("SnakeTongue") < 10 || countitem("ConcentrationPotion") < 5) goto L_notenough; delitem "SnakeTongue", 10; @@ -106,7 +116,6 @@ L_notenough: mes "\"Hey, you don't have all that I asked. Come back when you have everything.\""; close; - L_teach: mes "[Miriam]"; mes "\"Hmm... do you think you can learn the special speed skill?\""; @@ -119,7 +128,8 @@ L_teach: set @torso$, getitemname(getequipid(equip_torso)); set @weight, MaxWeight/Weight; if (@weight < 3) goto L_heavyweight; - if (@agi < 90) goto L_slow; + if (@agi < 60) goto L_slow; + if (baselevel < 60) goto L_lowlevel; if (countitem("SteelShield") > 0 || countitem("WarlordHelmet") > 0 || countitem("CrusadeHelmet") > 0 || countitem("WarlordPlate") > 0 || countitem("KnightsHelmet") > 0 || countitem("InfantryHelmet") > 0 || countitem("ChainmailShirt") > 0) goto L_heavymetal; goto L_offer; @@ -140,6 +150,11 @@ L_slow: mes "Oh, wait, wait... " +@agi+ " Agility? Are you serious? What do you do with all your Character points? Put them all to 'Strenght'? Really... I dont even want to know... Come back here when you have a decent character points distribution!\""; close; +L_lowlevel: + mes "[Miriam]"; + mes "\"Come back here when you are old enough. I even wonder how you could get here so unexperienced as you are.\""; + close; + L_offer: mes "[Miriam]"; mes "\"Hmm! You look great on these clothes! They look very comfortable too... And it seems like you are not carrying too much weight.\""; |