diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-21 23:59:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-21 23:59:44 -0300 |
commit | e0ba54b2a16b138beebf17fb9a19f950e8bafa7f (patch) | |
tree | 64781718ff1729adff135f2c48f621f6f0e4129c /npc | |
parent | 8df10351386984c18790a129c7aab6d752cd7889 (diff) | |
download | serverdata-e0ba54b2a16b138beebf17fb9a19f950e8bafa7f.tar.gz serverdata-e0ba54b2a16b138beebf17fb9a19f950e8bafa7f.tar.bz2 serverdata-e0ba54b2a16b138beebf17fb9a19f950e8bafa7f.tar.xz serverdata-e0ba54b2a16b138beebf17fb9a19f950e8bafa7f.zip |
Level stuff
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-2/helena.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/012-2/helena.txt b/npc/012-2/helena.txt index eab9d6778..cdab1504d 100644 --- a/npc/012-2/helena.txt +++ b/npc/012-2/helena.txt @@ -6,8 +6,13 @@ 012-2,47,40,0 script Helena NPC_FEMALE,{ .@q=getq(HurnscaldQuest_Bandits); + + // Stage 1: Level 40, collect Bandit Hood if (BaseLevel < 40) goto L_TooWeak; if (.@q == 1) goto L_Return; + + // Stage 2: Level 45, defeat Bandit Lord + if (BaseLevel < 45) goto L_Weak; goto L_Start; L_TooWeak; @@ -18,6 +23,11 @@ L_TooWeak; mesq l("Ah, we have serious problems of robbery. I need someone really strong to help me, and you don't qualify."); close; +L_Weak: + mesn; + mesq l("Ah, @@! I'm busy now, can we talk again later?", strcharinfo(0)); + close; + L_Start: mesn; mesq l("Bandits are a huge threat to Hurnscald. We're just a small farming town, and they're countless."); |