diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2011-12-24 19:52:55 +0100 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2011-12-24 19:52:55 +0100 |
commit | 68915af04b4868f4e213b9b6473d1351c272a5c7 (patch) | |
tree | ac94a8c7235e8dc05fad85e4a4b397c0211e8451 /npc | |
parent | f8bf74dee68c8395d6d025edfe0e899bdfba1110 (diff) | |
download | clientdata-68915af04b4868f4e213b9b6473d1351c272a5c7.tar.gz clientdata-68915af04b4868f4e213b9b6473d1351c272a5c7.tar.bz2 clientdata-68915af04b4868f4e213b9b6473d1351c272a5c7.tar.xz clientdata-68915af04b4868f4e213b9b6473d1351c272a5c7.zip |
Made Peter not warping the player if he is too weak to do his quest
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-2-1/peter.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index 27eb076a..ecc71534 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -55,7 +55,7 @@ 000-2-1.gat,60,35,0,1 script Peter 303,{ - if (BaseLevel < 5) goto OnStop; + if (BaseLevel < 5) goto OnTooWeak; mesn; mesq g(l("Hey, girl!"), l("Hey, man!")); @@ -75,11 +75,15 @@ goto OnDontNeedHelp; close; + OnTooWeak: + mesn; + mesq g(l("I need help for cleaning the wedge of the ship, but you aren't strong enough to help me.#0"), l("I need help for cleaning the wedge of the ship, but you aren't strong enough to help me.#1")); + close; + OnStop: mesn; mesq l("You can't go there!"); warp "000-2-1",61,37; - mesq g(l("I need help for cleaning the wedge of the ship, but you aren't strong enough to help me.#0"), l("I need help for cleaning the wedge of the ship, but you aren't strong enough to help me.#1")); close; OnGiveTask: |