diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2012-05-04 14:27:26 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2012-05-04 14:27:26 +0200 |
commit | eada7f973e7bdb1a107da94b436530e9ceec8c2c (patch) | |
tree | eb66ce79f63fc2f58d82e845d0be8423b0a152c5 /world/map/npc/048-2/helperCleaning1.txt | |
parent | 3d6b053777dcb0a6daa1c136a1c3eedd56ed78c3 (diff) | |
download | serverdata-eada7f973e7bdb1a107da94b436530e9ceec8c2c.tar.gz serverdata-eada7f973e7bdb1a107da94b436530e9ceec8c2c.tar.bz2 serverdata-eada7f973e7bdb1a107da94b436530e9ceec8c2c.tar.xz serverdata-eada7f973e7bdb1a107da94b436530e9ceec8c2c.zip |
Make the Blue sage slime subquest more verbose.
- Message when a spawn is triggered.
- Add function that counts the number of cleard nests.
- Helper who starts the subquest gives hints on how many nests are cleared.
Diffstat (limited to 'world/map/npc/048-2/helperCleaning1.txt')
-rw-r--r-- | world/map/npc/048-2/helperCleaning1.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/world/map/npc/048-2/helperCleaning1.txt b/world/map/npc/048-2/helperCleaning1.txt index 22138d86..d7c989a6 100644 --- a/world/map/npc/048-2/helperCleaning1.txt +++ b/world/map/npc/048-2/helperCleaning1.txt @@ -34,6 +34,25 @@ L_Progress: mes "[Pyry]"; mes "\"It's very brave of you to fight against those slimes deeper in the library. Remember that you have to kill the entire group to prevent them from breeding.\""; + callfunc "blueSageNumberOfClearedNests"; + if (@slimenests > 5) goto L_Almost; + if (@slimenests > 3) goto L_Some; + if (@slimenests > 1) goto L_Few; + goto L_Investigate; + +L_Almost: + next; + mes "\"I think there are only very few left.\""; + goto L_Investigate; + +L_Some: + next; + mes "\"The amount of slimes decreased noticably, but there are still some left.\""; + goto L_Investigate; + +L_Few: + next; + mes "\"I saw you already started, keep it on!\""; goto L_Investigate; L_Thank: |